Skip to content

Commit

Permalink
Fix SYN-627, events are in incorrect room in /sync
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjohnston committed Feb 11, 2016
1 parent abc1b22 commit ce14c7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synapse/storage/stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def get_room_events_stream_for_rooms(self, room_ids, from_key, to_key, limit=0,
preserve_fn(self.get_room_events_stream_for_room)(
room_id, from_key, to_key, limit, order=order,
)
for room_id in room_ids
for room_id in rm_ids
])
results.update(dict(zip(rm_ids, res)))

Expand Down

0 comments on commit ce14c7a

Please sign in to comment.