diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2021-12-07 11:37:54 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-07 11:37:54 +0000 |
commit | b1ecd19c5d19815b69e425d80f442bf2877cab76 (patch) | |
tree | db7e7f8c2bdddf7e959cff27d2a9cd4a428016d3 /synapse/handlers/room.py | |
parent | Correctly ignore invites from ignored users (#11511) (diff) | |
download | synapse-b1ecd19c5d19815b69e425d80f442bf2877cab76.tar.xz |
Fix 'delete room' admin api to work on incomplete rooms (#11523)
If, for some reason, we don't have the create event, we should still be able to purge a room.
Diffstat (limited to 'synapse/handlers/room.py')
-rw-r--r-- | synapse/handlers/room.py | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/synapse/handlers/room.py b/synapse/handlers/room.py index 2bcdf32dcc..ead2198e14 100644 --- a/synapse/handlers/room.py +++ b/synapse/handlers/room.py @@ -1535,20 +1535,13 @@ class RoomShutdownHandler: await self.store.block_room(room_id, requester_user_id) if not await self.store.get_room(room_id): - if block: - # We allow you to block an unknown room. - return { - "kicked_users": [], - "failed_to_kick_users": [], - "local_aliases": [], - "new_room_id": None, - } - else: - # But if you don't want to preventatively block another room, - # this function can't do anything useful. - raise NotFoundError( - "Cannot shut down room: unknown room id %s" % (room_id,) - ) + # if we don't know about the room, there is nothing left to do. + return { + "kicked_users": [], + "failed_to_kick_users": [], + "local_aliases": [], + "new_room_id": None, + } if new_room_user_id is not None: if not self.hs.is_mine_id(new_room_user_id): |