From 5252a493cb4247b4a74553da83a9e655ced64868 Mon Sep 17 00:00:00 2001 From: Jasmin Bom Date: Fri, 21 Sep 2018 09:20:35 +0200 Subject: [PATCH] Pass check result into handle_update Missed during merge --- telegram/ext/dispatcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telegram/ext/dispatcher.py b/telegram/ext/dispatcher.py index aea994695..234183d68 100644 --- a/telegram/ext/dispatcher.py +++ b/telegram/ext/dispatcher.py @@ -320,7 +320,7 @@ class Dispatcher(object): for handler in self.handlers[group]: check = handler.check_update(update) if check is not None and check is not False: - handler.handle_update(update, self) + handler.handle_update(update, self, check) if self.persistence: if self.persistence.store_chat_data and update.effective_chat.id: chat_id = update.effective_chat.id