mirror of
https://github.com/pyrogram/pyrogram
synced 2025-08-29 05:18:10 +00:00
Fix index out of range for new messages
This commit is contained in:
parent
a7650c457d
commit
bfe6632de4
@ -860,6 +860,7 @@ class Client:
|
||||
)
|
||||
)
|
||||
|
||||
if diff.new_messages:
|
||||
self.dispatcher.updates.put((
|
||||
types.UpdateNewMessage(
|
||||
message=diff.new_messages[0],
|
||||
@ -869,6 +870,8 @@ class Client:
|
||||
diff.users,
|
||||
diff.chats
|
||||
))
|
||||
else:
|
||||
self.dispatcher.updates.put((diff.other_updates[0], [], []))
|
||||
elif isinstance(updates, types.UpdateShort):
|
||||
self.dispatcher.updates.put((updates.update, [], []))
|
||||
except Exception as e:
|
||||
|
Loading…
x
Reference in New Issue
Block a user