diff options
author | Erik Johnston <erik@matrix.org> | 2015-02-20 15:40:47 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-02-20 15:40:47 +0000 |
commit | 2b45ca1541f104b7a4d41e958ca4e7438a0875e1 (patch) | |
tree | 3bc6e08a4065b9a5a17dd69050bd60cee21c0dc1 /synapse/handlers/federation.py | |
parent | Update CHANGES.rst with missing changes (diff) | |
parent | Change version scheme (diff) | |
download | synapse-2b45ca1541f104b7a4d41e958ca4e7438a0875e1.tar.xz |
Merge branch 'hotfixes-v0.7.1-r1' of github.com:matrix-org/synapse v0.7.1-r1
Diffstat (limited to 'synapse/handlers/federation.py')
-rw-r--r-- | synapse/handlers/federation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/federation.py b/synapse/handlers/federation.py index 0eb2ff95ca..7deed16f9c 100644 --- a/synapse/handlers/federation.py +++ b/synapse/handlers/federation.py @@ -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( |