2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-28 12:57:52 +00:00

Don't swallow left_chat_member updates

Even though they are only relevant for supergroups with <50 members
This commit is contained in:
Dan 2018-10-01 09:45:32 +02:00
parent 12c61fb431
commit b79bd1ea83

View File

@ -818,11 +818,11 @@ class Client(Methods, BaseClient):
)
)
except ChannelPrivate:
continue
if not isinstance(diff, types.updates.ChannelDifferenceEmpty):
updates.users += diff.users
updates.chats += diff.chats
pass
else:
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: