0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-10-01 05:59:00 +02:00

Make seen_ids a set

This commit is contained in:
Erik Johnston 2015-02-06 13:52:16 +00:00
parent 9f2573eea1
commit c78b5fb1f1

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