mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-27 20:22:07 +03:00
Fix where we pulled in event.state_events from hotfixes branch
This commit is contained in:
parent
2215faa361
commit
21cab3a7ec
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
))
|
||||
|
|
Loading…
Reference in a new issue