From ba653c08413ed16192acab1121da47d09d7cc43e Mon Sep 17 00:00:00 2001 From: Wim Date: Tue, 25 Jul 2017 23:19:50 +0200 Subject: [PATCH] Ignore edited messages with reactions (mattermost) --- bridge/mattermost/mattermost.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bridge/mattermost/mattermost.go b/bridge/mattermost/mattermost.go index 99e8d60c..67dc7b5b 100644 --- a/bridge/mattermost/mattermost.go +++ b/bridge/mattermost/mattermost.go @@ -174,6 +174,10 @@ func (b *Bmattermost) handleMatterClient(mchan chan *MMMessage) { // only listen to message from our team if (message.Raw.Event == "posted" || message.Raw.Event == "post_edited") && b.mc.User.Username != message.Username && message.Raw.Data["team_id"].(string) == b.TeamId { + // if the message has reactions don't repost it (for now, until we can correlate reaction with message) + if message.Post.HasReactions { + continue + } flog.Debugf("Receiving from matterclient %#v", message) m := &MMMessage{} m.UserID = message.UserID