4
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-06-26 14:19:24 +00:00

Do not add messages without ID to cache

This commit is contained in:
Wim
2017-08-29 20:28:44 +02:00
parent ad3a753718
commit 2f7df2df43
3 changed files with 5 additions and 3 deletions

View File

@ -105,8 +105,8 @@ func (b *Bgitter) Send(msg config.Message) (string, error) {
flog.Errorf("Could not find roomID for %v", msg.Channel)
return "", nil
}
// add ZWSP because gitter echoes our own messages
if msg.ID != "" {
flog.Debugf("updating message with id %s", msg.ID)
_, err := b.c.UpdateMessage(roomID, msg.ID, msg.Username+msg.Text)
if err != nil {
return "", err