mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-01-31 08:13:25 -05:00
.values() returns list of sets
This commit is contained in:
parent
9f715573aa
commit
216a05b3e3
@ -406,7 +406,8 @@ class PresenceHandler(object):
|
||||
user_id for user_id, count in self.user_to_num_current_syncs.items()
|
||||
if count
|
||||
}
|
||||
syncing_user_ids.update(self.external_process_to_current_syncs.values())
|
||||
for user_ids in self.external_process_to_current_syncs.values():
|
||||
syncing_user_ids.update(user_ids)
|
||||
return syncing_user_ids
|
||||
|
||||
@defer.inlineCallbacks
|
||||
|
Loading…
x
Reference in New Issue
Block a user