Account for creators missing in synapse room table. (#905)

This really and deeply sucks
https://github.com/element-hq/synapse/issues/18563.
This commit is contained in:
Gnuxie
2025-06-17 17:13:41 +01:00
committed by GitHub
parent 8de924c852
commit 026de3b9cb
3 changed files with 6 additions and 6 deletions
@@ -94,7 +94,7 @@ export class SynapseRoomListScanner {
roomID: room.room_id,
details: {
room_id: room.room_id,
creator: room.creator,
creator: room.creator ?? undefined,
name: room.name ?? undefined,
},
}))