Make into list

pull/2321/head
Erik Johnston 2017-06-29 15:47:37 +01:00
parent 5946aa0877
commit 6ff14ddd2e
1 changed files with 1 additions and 1 deletions

View File

@ -405,7 +405,7 @@ class EventsStore(SQLBaseStore):
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