diff options
author | Erik Johnston <erik@matrix.org> | 2014-12-16 19:16:15 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-12-16 19:16:15 +0000 |
commit | 21cab3a7ec0bd9052df8ab1d70e66c9d0af82055 (patch) | |
tree | 96560b025c85c4fcd61a4d419af26d3749868b43 /synapse/handlers | |
parent | Merge branch 'hotfixes-v0.5.4a' of github.com:matrix-org/synapse into release... (diff) | |
download | synapse-21cab3a7ec0bd9052df8ab1d70e66c9d0af82055.tar.xz |
Fix where we pulled in event.state_events from hotfixes branch
Diffstat (limited to 'synapse/handlers')
-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 cd9e655f95..b76dcd98e2 100644 --- a/synapse/handlers/federation.py +++ b/synapse/handlers/federation.py @@ -529,7 +529,7 @@ class FederationHandler(BaseHandler): yield self.replication_layer.send_pdu(new_pdu, destinations) - state_ids = [e.event_id for e in event.state_events.values()] + state_ids = [e.event_id for e in context.current_state.values()] auth_chain = yield self.store.get_auth_chain(set( [event.event_id] + state_ids )) |