mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-06 09:24:18 -04:00
Don't loop over all rooms ever in typing.get_new_events_for_user
This commit is contained in:
parent
90fde4b8d7
commit
f4d552589e
1 changed files with 2 additions and 2 deletions
|
@ -260,8 +260,8 @@ class TypingNotificationEventSource(object):
|
||||||
)
|
)
|
||||||
|
|
||||||
events = []
|
events = []
|
||||||
for room_id in handler._room_serials:
|
for room_id in joined_room_ids:
|
||||||
if room_id not in joined_room_ids:
|
if room_id not in handler._room_serials:
|
||||||
continue
|
continue
|
||||||
if handler._room_serials[room_id] <= from_key:
|
if handler._room_serials[room_id] <= from_key:
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue