make catchup regex insensitive, use alt wording

This commit is contained in:
Brian S. Stephan 2021-05-06 09:27:41 -05:00
parent 651399f5fc
commit 0ccb49e7ed
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ logger = logging.getLogger(__name__)
class History(Plugin): class History(Plugin):
"""Watch the history of IRC channels and try to track what users may have missed.""" """Watch the history of IRC channels and try to track what users may have missed."""
what_missed_regex = r'what did I miss\?$' what_missed_regex = r'(?i)(what did I miss\?|did I miss anything\?)$'
def start(self): def start(self):
"""Set up the handlers.""" """Set up the handlers."""