summary refs log tree commit diff
path: root/synapse/event_auth.py
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2021-08-09 11:32:41 +0100
committerBrendan Abolivier <babolivier@matrix.org>2021-08-09 11:32:41 +0100
commit53d7d92511e833c44a19668820855c39288fb60f (patch)
treebeb6df83f50415a95b48492e1dbb7aa2923bceb7 /synapse/event_auth.py
parentMerge branch 'release-v1.40' of github.com:matrix-org/synapse into matrix-org... (diff)
parentSupport MSC3289: Room version 8 (#10449) (diff)
downloadsynapse-53d7d92511e833c44a19668820855c39288fb60f.tar.xz
Merge branch 'release-v1.40' of github.com:matrix-org/synapse into matrix-org-hotfixes
Diffstat (limited to 'synapse/event_auth.py')
-rw-r--r--synapse/event_auth.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/synapse/event_auth.py b/synapse/event_auth.py

index 4c92e9a2d4..c3a0c10499 100644 --- a/synapse/event_auth.py +++ b/synapse/event_auth.py
@@ -370,10 +370,7 @@ def _is_membership_change_allowed( raise AuthError(403, "You are banned from this room") elif join_rule == JoinRules.PUBLIC: pass - elif ( - room_version.msc3083_join_rules - and join_rule == JoinRules.MSC3083_RESTRICTED - ): + elif room_version.msc3083_join_rules and join_rule == JoinRules.RESTRICTED: # This is the same as public, but the event must contain a reference # to the server who authorised the join. If the event does not contain # the proper content it is rejected.