Add missing yield

pull/6946/head
Andrew Morgan 2020-03-25 13:52:20 +00:00
parent bd52c527d1
commit 277bc3bed1
1 changed files with 1 additions and 1 deletions

View File

@ -520,7 +520,7 @@ class RoomMemberHandler(object):
yield self.store.set_room_is_public(room_id, True)
# Transfer alias mappings in the room directory
self.store.update_aliases_for_room(old_room_id, room_id)
yield self.store.update_aliases_for_room(old_room_id, room_id)
# Check if any groups we own contain the predecessor room
local_group_ids = yield self.store.get_local_groups_for_room(old_room_id)