diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2022-06-17 14:56:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-17 13:56:46 +0000 |
commit | e16ea87d0f8c4c30cad36f85488eb1f647e640b0 (patch) | |
tree | 0ae8bd49de90c12e0e02ef2c5e7e70fa94346323 /changelog.d | |
parent | Add type hints to event push actions tests. (#13099) (diff) | |
download | synapse-e16ea87d0f8c4c30cad36f85488eb1f647e640b0.tar.xz |
Fix inconsistencies in event validation for `m.room.create` events (#13087)
* Extend the auth rule checks for `m.room.create` events ... and move them up to the top of the function. Since the no auth_events are allowed for m.room.create events, we may as well get the m.room.create event checks out of the way first. * Add a test for create events with prev_events
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/13087.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/13087.bugfix b/changelog.d/13087.bugfix new file mode 100644 index 0000000000..7c69801afe --- /dev/null +++ b/changelog.d/13087.bugfix @@ -0,0 +1 @@ +Fix some inconsistencies in the event authentication code. |