Skip to content
Snippets Groups Projects
Commit 2bafeca2 authored by Erik Johnston's avatar Erik Johnston
Browse files

Add missing comma so that it generates a dict and not a set

parent 894a89d9
No related branches found
No related tags found
No related merge requests found
......@@ -875,7 +875,7 @@ class FederationHandler(BaseHandler):
local_view = dict(auth_events)
remote_view = dict(auth_events)
remote_view.update({
(d.type, d.state_key) for d in different_events
(d.type, d.state_key): d for d in different_events
})
new_state, prev_state = self.state_handler.resolve_events(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment