summary refs log tree commit diff
path: root/synapse/handlers/room.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2020-10-05 19:00:50 +0100
committerRichard van der Hoff <richard@matrix.org>2020-10-05 19:00:50 +0100
commitfd0282201e8876e3a860766fff89561564041260 (patch)
tree22d170c60fcd7884a7b706ef2cf34096ad6bd827 /synapse/handlers/room.py
parentMove shadow-ban check down into `handle_new_client_event`. (diff)
downloadsynapse-fd0282201e8876e3a860766fff89561564041260.tar.xz
pull up event.sender assertion
Diffstat (limited to 'synapse/handlers/room.py')
-rw-r--r--synapse/handlers/room.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/handlers/room.py b/synapse/handlers/room.py
index f14f791586..530bf0ab88 100644
--- a/synapse/handlers/room.py
+++ b/synapse/handlers/room.py
@@ -185,6 +185,7 @@ class RoomCreationHandler(BaseHandler):
             ShadowBanError if the requester is shadow-banned.
         """
         user_id = requester.user.to_string()
+        assert self.hs.is_mine_id(user_id), "User must be our own: %s" % (user_id,)
 
         # start by allocating a new room id
         r = await self.store.get_room(old_room_id)