LPgenerator / mattermost_bot

MatterBot - A chat bot for MatterMost (http://www.mattermost.org).
MIT License
211 stars 60 forks source link

ignore messages with ignore strings anywhere in message, not just the beginning #37

Open wtodom opened 7 years ago

wtodom commented 7 years ago

The ignore() function in dispatch.py only checks if a message starts with any of the ignore strings. This led to the bot replying with settings.DEFAULT_REPLY whenever someone in a channel used @here anywhere except the start of their message.

This commit checks for the presence of settings.IGNORE_NOTIFIES strings anywhere in a message rather than just in the beginning.