mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-02-07 14:45:18 -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()
|
user_id for user_id, count in self.user_to_num_current_syncs.items()
|
||||||
if count
|
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
|
return syncing_user_ids
|
||||||
|
|
||||||
@defer.inlineCallbacks
|
@defer.inlineCallbacks
|
||||||
|
Loading…
x
Reference in New Issue
Block a user