diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2019-11-01 10:28:09 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-01 10:28:09 +0000 |
commit | ace947e8da30c37ead3357abe34adee8a1528296 (patch) | |
tree | d34e35a55fbc18c045beefaeeddf6f1fdab4bcb0 /synapse/handlers/room.py | |
parent | Merge pull request #5727 from matrix-org/uhoreg/e2e_cross-signing2-part3 (diff) | |
download | synapse-ace947e8da30c37ead3357abe34adee8a1528296.tar.xz |
Depublish a room from the public rooms list when it is upgraded (#6232)
Diffstat (limited to 'synapse/handlers/room.py')
-rw-r--r-- | synapse/handlers/room.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/synapse/handlers/room.py b/synapse/handlers/room.py index 0182e5b432..e92b2eafd5 100644 --- a/synapse/handlers/room.py +++ b/synapse/handlers/room.py @@ -129,6 +129,7 @@ class RoomCreationHandler(BaseHandler): old_room_id, new_version, # args for _upgrade_room ) + return ret @defer.inlineCallbacks @@ -189,7 +190,12 @@ class RoomCreationHandler(BaseHandler): requester, old_room_id, new_room_id, old_room_state ) - # and finally, shut down the PLs in the old room, and update them in the new + # Copy over user push rules, tags and migrate room directory state + yield self.room_member_handler.transfer_room_state_on_room_upgrade( + old_room_id, new_room_id + ) + + # finally, shut down the PLs in the old room, and update them in the new # room. yield self._update_upgraded_room_pls( requester, old_room_id, new_room_id, old_room_state |