diff options
author | Wim <wim@42.be> | 2018-02-03 01:11:11 +0100 |
---|---|---|
committer | Wim <wim@42.be> | 2018-02-03 01:11:11 +0100 |
commit | 80822b7fff85647ad5852b00ec36d046959aed92 (patch) | |
tree | f3f15769f5b75b53f97c3bedf1bbf6a1f9a909c8 /bridge/xmpp | |
parent | 78f1011f529981bab58556d9847488db04d00388 (diff) | |
download | matterbridge-msglm-80822b7fff85647ad5852b00ec36d046959aed92.tar.gz matterbridge-msglm-80822b7fff85647ad5852b00ec36d046959aed92.tar.bz2 matterbridge-msglm-80822b7fff85647ad5852b00ec36d046959aed92.zip |
Send chat notification if media is too big to be re-uploaded to MediaServer. See #359
Diffstat (limited to 'bridge/xmpp')
-rw-r--r-- | bridge/xmpp/xmpp.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bridge/xmpp/xmpp.go b/bridge/xmpp/xmpp.go index 6cc9413d..1f18f74b 100644 --- a/bridge/xmpp/xmpp.go +++ b/bridge/xmpp/xmpp.go @@ -3,6 +3,7 @@ package bxmpp import ( "crypto/tls" "github.com/42wim/matterbridge/bridge/config" + "github.com/42wim/matterbridge/bridge/helper" log "github.com/Sirupsen/logrus" "github.com/jpillora/backoff" "github.com/mattn/go-xmpp" @@ -81,6 +82,9 @@ func (b *Bxmpp) Send(msg config.Message) (string, error) { } flog.Debugf("Receiving %#v", msg) if msg.Extra != nil { + for _, rmsg := range helper.HandleExtra(&msg, b.General) { + b.xc.Send(xmpp.Chat{Type: "groupchat", Remote: rmsg.Channel + "@" + b.Config.Muc, Text: rmsg.Username + rmsg.Text}) + } if len(msg.Extra["file"]) > 0 { for _, f := range msg.Extra["file"] { fi := f.(config.FileInfo) |