diff options
author | Mathieu Velten <matmaul@gmail.com> | 2024-04-09 15:06:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-09 14:06:46 +0100 |
commit | e363881592840709d7a9a770897d230b8b086036 (patch) | |
tree | 3eacd63da0e8acb8b15d0511675b0324792c10bb /synapse | |
parent | Add forgotten schema delta (#17054) (diff) | |
download | synapse-e363881592840709d7a9a770897d230b8b086036.tar.xz |
Fix PR #16677, a parameter was missing in a function call (#17033)
Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com>
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/handlers/room.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/handlers/room.py b/synapse/handlers/room.py index 8b5ffb135e..5e81a51638 100644 --- a/synapse/handlers/room.py +++ b/synapse/handlers/room.py @@ -956,6 +956,7 @@ class RoomCreationHandler: room_alias=room_alias, power_level_content_override=power_level_content_override, creator_join_profile=creator_join_profile, + ignore_forced_encryption=ignore_forced_encryption, ) # we avoid dropping the lock between invites, as otherwise joins can |