`send_join` response: get create event from `state`, not `auth_chain` (#12005)

msc3706 proposes changing the `/send_join` response:

> Any events returned within `state` can be omitted from `auth_chain`.

Currently, we rely on `m.room.create` being returned in `auth_chain`, but since
the `m.room.create` event must necessarily be part of the state, the above
change will break this.

In short, let's look for `m.room.create` in `state` rather than `auth_chain`.
code_spécifique_watcha
Richard van der Hoff 3 years ago committed by GitHub
parent 4077177390
commit 696acd3515
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      changelog.d/12005.misc
  2. 2
      synapse/handlers/federation_event.py

@ -0,0 +1 @@
Preparation for faster-room-join work: when parsing the `send_join` response, get the `m.room.create` event from `state`, not `auth_chain`.

@ -420,7 +420,7 @@ class FederationEventHandler:
SynapseError if the response is in some way invalid.
"""
create_event = None
for e in auth_events:
for e in state:
if (e.type, e.state_key) == (EventTypes.Create, ""):
create_event = e
break

Loading…
Cancel
Save