Make seen_ids a set

This commit is contained in:
Erik Johnston 2015-02-06 13:52:16 +00:00
parent 9f2573eea1
commit c78b5fb1f1
1 changed files with 3 additions and 1 deletions

View File

@ -130,7 +130,9 @@ class FederationHandler(BaseHandler):
if auth_chain:
event_ids |= {e.event_id for e in auth_chain}
seen_ids = (yield self.store.have_events(event_ids)).keys()
seen_ids = set(
(yield self.store.have_events(event_ids)).keys()
)
if state and auth_chain is not None:
# If we have any state or auth_chain given to us by the replication