mirror of
https://github.com/pyrogram/pyrogram
synced 2025-09-01 14:55:12 +00:00
Don't process empty differences
This commit is contained in:
@@ -651,8 +651,9 @@ class Client:
|
||||
)
|
||||
)
|
||||
|
||||
updates.users += diff.users
|
||||
updates.chats += diff.chats
|
||||
if not isinstance(diff, types.updates.ChannelDifferenceEmpty):
|
||||
updates.users += diff.users
|
||||
updates.chats += diff.chats
|
||||
|
||||
if channel_id and pts:
|
||||
if channel_id not in self.channels_pts:
|
||||
|
Reference in New Issue
Block a user