Don't loop over all rooms ever in typing.get_new_events_for_user

pull/252/head
Erik Johnston 2015-08-26 10:51:08 +01:00
parent 90fde4b8d7
commit f4d552589e
1 changed files with 2 additions and 2 deletions

View File

@ -260,8 +260,8 @@ class TypingNotificationEventSource(object):
)
events = []
for room_id in handler._room_serials:
if room_id not in joined_room_ids:
for room_id in joined_room_ids:
if room_id not in handler._room_serials:
continue
if handler._room_serials[room_id] <= from_key:
continue