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/discord/discord.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/discord/discord.go')
-rw-r--r-- | bridge/discord/discord.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bridge/discord/discord.go b/bridge/discord/discord.go index 7debcda0..b44ad898 100644 --- a/bridge/discord/discord.go +++ b/bridge/discord/discord.go @@ -108,12 +108,12 @@ func (b *bdiscord) JoinChannel(channel config.ChannelInfo) error { return nil } -func (b *bdiscord) Send(msg config.Message) error { +func (b *bdiscord) Send(msg config.Message) (string, error) { flog.Debugf("Receiving %#v", msg) channelID := b.getChannelID(msg.Channel) if channelID == "" { flog.Errorf("Could not find channelID for %v", msg.Channel) - return nil + return "", nil } if msg.Event == config.EVENT_USER_ACTION { msg.Text = "_" + msg.Text + "_" @@ -142,7 +142,7 @@ func (b *bdiscord) Send(msg config.Message) error { AvatarURL: msg.Avatar, }) } - return nil + return "", nil } func (b *bdiscord) messageUpdate(s *discordgo.Session, m *discordgo.MessageUpdate) { |