mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-29 20:14:51 +00:00
Fix missing total_count for ChatMembers in channels/supergroups
This commit is contained in:
parent
96af2ebcf2
commit
30c0086fde
1 changed files with 2 additions and 1 deletions
|
|
@ -973,6 +973,7 @@ def parse_chat_members(members: types.channels.ChannelParticipants or types.mess
|
|||
parsed_members = []
|
||||
|
||||
if isinstance(members, types.channels.ChannelParticipants):
|
||||
count = members.count
|
||||
members = members.participants
|
||||
|
||||
for member in members:
|
||||
|
|
@ -1031,7 +1032,7 @@ def parse_chat_members(members: types.channels.ChannelParticipants or types.mess
|
|||
parsed_members.append(chat_member)
|
||||
|
||||
return pyrogram_types.ChatMembers(
|
||||
total_count=members.count,
|
||||
total_count=count,
|
||||
chat_members=parsed_members
|
||||
)
|
||||
else:
|
||||
|
|
|
|||
Loading…
Reference in a new issue