From 0ccb49e7ed7ef44101b05c68b05a5a6dda49e5a0 Mon Sep 17 00:00:00 2001 From: Brian Stephan Date: Thu, 6 May 2021 09:27:41 -0500 Subject: [PATCH] make catchup regex insensitive, use alt wording --- history/ircplugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/history/ircplugin.py b/history/ircplugin.py index 2d383eb..fa0543c 100644 --- a/history/ircplugin.py +++ b/history/ircplugin.py @@ -12,7 +12,7 @@ logger = logging.getLogger(__name__) class History(Plugin): """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): """Set up the handlers."""