summary refs log tree commit diff
path: root/synapse/handlers/room.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2020-10-21 16:15:20 +0100
committerErik Johnston <erik@matrix.org>2020-10-21 16:53:40 +0100
commitd8902d4bd59bcecc46e595df5902385cf46c55d9 (patch)
treea152aa2fd9e6c672727df5f0fa28e33f0971b4df /synapse/handlers/room.py
parentPrivacy policy applies to authenticated entity (diff)
downloadsynapse-d8902d4bd59bcecc46e595df5902385cf46c55d9.tar.xz
MAU limits are based off of the *authenticated* user
Diffstat (limited to 'synapse/handlers/room.py')
-rw-r--r--synapse/handlers/room.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/room.py b/synapse/handlers/room.py

index ec300d8877..11c4355082 100644 --- a/synapse/handlers/room.py +++ b/synapse/handlers/room.py
@@ -587,7 +587,7 @@ class RoomCreationHandler(BaseHandler): """ user_id = requester.user.to_string() - await self.auth.check_auth_blocking(user_id) + await self.auth.check_auth_blocking(requester=requester) if ( self._server_notices_mxid is not None