Skip to content

Commit

Permalink
Filter out notifications of threads status (#1060)
Browse files Browse the repository at this point in the history
  • Loading branch information
gbin-argo authored and gbin committed Jul 5, 2017
1 parent c4efe43 commit 63edccc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion errbot/backends/slack.py
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ def _message_event_handler(self, event):

subtype = event.get('subtype', None)

if subtype in ("message_deleted", "channel_topic"):
if subtype in ("message_deleted", "channel_topic", "message_replied"):
log.debug("Message of type %s, ignoring this event", subtype)
return

Expand Down

0 comments on commit 63edccc

Please sign in to comment.