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

Fix unnecessary Thread creation when no new messages arrived.

This commit is contained in:
pieter 2015-07-01 19:12:12 +02:00
parent 0068388872
commit 949dfc0fb0

View File

@ -44,13 +44,15 @@ class TeleBot:
def get_update(self):
result = apihelper.get_updates(self.token, offset=(self.last_update_id + 1))
updates = result['result']
notify_updates = []
new_messages = []
for update in updates:
if update['update_id'] > self.last_update_id:
self.last_update_id = update['update_id']
msg = types.Message.de_json(json.dumps(update['message']))
notify_updates.append(msg)
self.__notify_update(notify_updates)
new_messages.append(msg)
if len(new_messages) > 0:
self.__notify_update(new_messages)
def __notify_update(self, new_messages):
for listener in self.update_listener: