1
0

Convert simple_select_one_txn and simple_select_one to return tuples. (#16612)

This commit is contained in:
Patrick Cloke
2023-11-09 11:13:31 -05:00
committed by GitHub
parent ff716b483b
commit ab3f1b3b53
33 changed files with 283 additions and 279 deletions

View File

@@ -1860,7 +1860,8 @@ class PublicRoomListManager:
if not room:
return False
return room.get("is_public", False)
# The first item is whether the room is public.
return room[0]
async def add_room_to_public_room_list(self, room_id: str) -> None:
"""Publishes a room to the public room list.