1
0
mirror of https://github.com/eternnoir/pyTelegramBotAPI.git synced 2023-08-10 21:12:57 +03:00

Added IGNORECASE flag to message_handler

Added re.IGNORECASE flag to message_handler, so it matches without chars case.
This commit is contained in:
Andrew Developer 2017-03-28 16:24:28 +03:00 committed by GitHub
parent 7f31f8dde8
commit 43f026dc64

View File

@ -852,7 +852,7 @@ class TeleBot:
def _test_filter(self, filter, filter_value, message):
test_cases = {
'content_types': lambda msg: msg.content_type in filter_value,
'regexp': lambda msg: msg.content_type == 'text' and re.search(filter_value, msg.text),
'regexp': lambda msg: msg.content_type == 'text' and re.search(filter_value, msg.text, re.IGNORECASE),
'commands': lambda msg: msg.content_type == 'text' and util.extract_command(msg.text) in filter_value,
'func': lambda msg: filter_value(msg)
}