diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-08-09 04:46:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-09 10:46:39 +0200 |
commit | 0c246dd4a09e21e677934d0d83efa573c9127a6f (patch) | |
tree | 0d4a9b832854b987cbae993a735273701425e575 /synapse/handlers | |
parent | fix broken links in `upgrade.md` (#10543) (diff) | |
download | synapse-0c246dd4a09e21e677934d0d83efa573c9127a6f.tar.xz |
Support MSC3289: Room version 8 (#10449)
This adds support for MSC3289: room version 8. This is room version 7 + MSC3083.
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/event_auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/event_auth.py b/synapse/handlers/event_auth.py index 53fac1f8a3..e2410e482f 100644 --- a/synapse/handlers/event_auth.py +++ b/synapse/handlers/event_auth.py @@ -240,7 +240,7 @@ class EventAuthHandler: # If the join rule is not restricted, this doesn't apply. join_rules_event = await self._store.get_event(join_rules_event_id) - return join_rules_event.content.get("join_rule") == JoinRules.MSC3083_RESTRICTED + return join_rules_event.content.get("join_rule") == JoinRules.RESTRICTED async def get_rooms_that_allow_join( self, state_ids: StateMap[str] |