Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Make into list
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjohnston committed Jun 29, 2017
1 parent 5946aa0 commit 6ff14dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synapse/storage/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ def _persist_events(self, events_and_contexts, backfilled=False,

for room_id, latest_event_ids in new_forward_extremeties.iteritems():
self.get_latest_event_ids_in_room.prefill(
(room_id,), latest_event_ids
(room_id,), list(latest_event_ids)
)

@defer.inlineCallbacks
Expand Down

0 comments on commit 6ff14dd

Please sign in to comment.