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