Add missing yield
parent
bd52c527d1
commit
277bc3bed1
|
|
@ -520,7 +520,7 @@ class RoomMemberHandler(object):
|
||||||
yield self.store.set_room_is_public(room_id, True)
|
yield self.store.set_room_is_public(room_id, True)
|
||||||
|
|
||||||
# Transfer alias mappings in the room directory
|
# 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
|
# Check if any groups we own contain the predecessor room
|
||||||
local_group_ids = yield self.store.get_local_groups_for_room(old_room_id)
|
local_group_ids = yield self.store.get_local_groups_for_room(old_room_id)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue