-
Notifications
You must be signed in to change notification settings - Fork 394
Open
Description
Further, this implies that the rooms
table is also often missing creator.
synapse/synapse/storage/databases/main/room.py
Lines 729 to 741 in 73a3838
info_sql = """ | |
SELECT state.room_id, state.name, state.canonical_alias, curr.joined_members, | |
curr.local_users_in_room, rooms.room_version, rooms.creator, | |
state.encryption, state.is_federatable, rooms.is_public, state.join_rules, | |
state.guest_access, state.history_visibility, curr.current_state_events, | |
state.room_type | |
FROM room_stats_state state | |
INNER JOIN room_stats_current curr USING (room_id) | |
INNER JOIN rooms USING (room_id) | |
{where} | |
ORDER BY {order_by} {direction}, state.room_id {direction} | |
LIMIT ? | |
OFFSET ? |
synapse/synapse/rest/admin/rooms.py
Line 255 in 4a803e8
rooms, total_rooms = await self.store.get_rooms_paginate( |
Seems to be missing it more often than not?