diff options
author | Wim <wim@42.be> | 2017-08-27 22:59:37 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2017-08-27 22:59:37 +0200 |
commit | 5a8d7b5f6d30bf4d3ee93fe9593e0b3504ad684a (patch) | |
tree | 62f8534833b4184606980d1b61b44bbec8898fed /bridge/xmpp/xmpp.go | |
parent | cfb810713872a5f95a5a54c449fef3bce5aa05b5 (diff) | |
download | matterbridge-msglm-5a8d7b5f6d30bf4d3ee93fe9593e0b3504ad684a.tar.gz matterbridge-msglm-5a8d7b5f6d30bf4d3ee93fe9593e0b3504ad684a.tar.bz2 matterbridge-msglm-5a8d7b5f6d30bf4d3ee93fe9593e0b3504ad684a.zip |
Modify Send() to return also a message id
Diffstat (limited to 'bridge/xmpp/xmpp.go')
-rw-r--r-- | bridge/xmpp/xmpp.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bridge/xmpp/xmpp.go b/bridge/xmpp/xmpp.go index 56773ef5..d453706a 100644 --- a/bridge/xmpp/xmpp.go +++ b/bridge/xmpp/xmpp.go @@ -79,10 +79,10 @@ func (b *Bxmpp) JoinChannel(channel config.ChannelInfo) error { return nil } -func (b *Bxmpp) Send(msg config.Message) error { +func (b *Bxmpp) Send(msg config.Message) (string, error) { flog.Debugf("Receiving %#v", msg) b.xc.Send(xmpp.Chat{Type: "groupchat", Remote: msg.Channel + "@" + b.Config.Muc, Text: msg.Username + msg.Text}) - return nil + return "", nil } func (b *Bxmpp) createXMPP() (*xmpp.Client, error) { |