diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2021-09-08 10:37:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-08 10:37:50 +0100 |
commit | 5724883ac23a45b25e6cdcc65616785d68e56c7a (patch) | |
tree | 86477c3da95aa04fce73d9cd491abdbed6d1c756 /changelog.d | |
parent | Merge branch 'master' into develop (diff) | |
download | synapse-5724883ac23a45b25e6cdcc65616785d68e56c7a.tar.xz |
Persist auth events before the events that rely on them (#10771)
If we're persisting an event E which has auth_events A1, A2, then we ought to make sure that we correctly auth and persist A1 and A2, before we blindly accept E. This PR does part of that - it persists the auth events first - but it does not fully solve the problem, because we still don't check that the auth events weren't rejected.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/10771.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/10771.misc b/changelog.d/10771.misc new file mode 100644 index 0000000000..9a765435db --- /dev/null +++ b/changelog.d/10771.misc @@ -0,0 +1 @@ +Clean up some of the federation event authentication code for clarity. |