mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-03-02 08:09:15 -05:00
Add missing comma so that it generates a dict and not a set
This commit is contained in:
parent
894a89d99b
commit
2bafeca270
@ -875,7 +875,7 @@ class FederationHandler(BaseHandler):
|
|||||||
local_view = dict(auth_events)
|
local_view = dict(auth_events)
|
||||||
remote_view = dict(auth_events)
|
remote_view = dict(auth_events)
|
||||||
remote_view.update({
|
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(
|
new_state, prev_state = self.state_handler.resolve_events(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user