mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-14 17:53:51 +01:00
Iterate over the user_streams not the user_ids
This commit is contained in:
parent
fff7905409
commit
554c63ca60
1 changed files with 1 additions and 1 deletions
|
@ -153,7 +153,7 @@ class Notifier(object):
|
|||
|
||||
for x in self.room_to_user_streams.values():
|
||||
all_user_streams |= x
|
||||
for x in self.user_to_user_stream:
|
||||
for x in self.user_to_user_stream.values():
|
||||
all_user_streams.add(x)
|
||||
for x in self.appservice_to_user_streams.values():
|
||||
all_user_streams |= x
|
||||
|
|
Loading…
Reference in a new issue