Fix duplicate participants causing some users to be left out

This commit is contained in:
Tulir Asokan
2018-03-12 11:02:43 +02:00
parent 87c87f93ef
commit 0e23aafa3d
+1 -1
View File
@@ -447,7 +447,7 @@ class Portal:
break
participants += response.participants
users += response.users
offset += len(response.users)
offset += len(response.participants)
return users, participants
except ChatAdminRequiredError:
return [], []