diff --git a/telebot/__init__.py b/telebot/__init__.py index 1c74d02..df59f39 100644 --- a/telebot/__init__.py +++ b/telebot/__init__.py @@ -93,7 +93,7 @@ class TeleBot: def __init__( self, token, parse_mode=None, threaded=True, skip_pending=False, num_threads=2, - next_step_backend=None, reply_backend=None, exception_handler=None + next_step_backend=None, reply_backend=None, exception_handler=None, last_update_id=0 ): """ :param token: bot API token @@ -107,7 +107,7 @@ class TeleBot: self.skip_pending = skip_pending self.__stop_polling = threading.Event() - self.last_update_id = 0 + self.last_update_id = last_update_id self.exc_info = None self.next_step_backend = next_step_backend