mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2025-04-04 17:24:18 +03:00
skip ChannelParticipantLeft in _ParticipantsIter
This commit is contained in:
parent
67765f84a5
commit
890bf485c9
|
@ -218,8 +218,10 @@ class _ParticipantsIter(RequestIter):
|
|||
self.requests.offset += len(participants.participants)
|
||||
users = {user.id: user for user in participants.users}
|
||||
for participant in participants.participants:
|
||||
|
||||
if isinstance(participant, types.ChannelParticipantBanned):
|
||||
if isinstance(participant, types.ChannelParticipantLeft):
|
||||
# See issue #3231 to learn why this is ignored.
|
||||
continue
|
||||
elif isinstance(participant, types.ChannelParticipantBanned):
|
||||
if not isinstance(participant.peer, types.PeerUser):
|
||||
# May have the entire channel banned. See #3105.
|
||||
continue
|
||||
|
|
Loading…
Reference in New Issue
Block a user