pull up event.sender assertion

This commit is contained in:
Richard van der Hoff 2020-10-05 19:00:50 +01:00
parent 2ee302d016
commit fd0282201e
2 changed files with 5 additions and 4 deletions

View file

@ -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)