mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-08 23:04:55 -04:00
Add brackets to make get room name / alias work
This commit is contained in:
parent
efac71d6ca
commit
69a75b7ebe
1 changed files with 2 additions and 2 deletions
|
@ -402,8 +402,8 @@ class DataStore(RoomMemberStore, RoomStore,
|
|||
"redacted": del_sql,
|
||||
}
|
||||
|
||||
sql += " AND (s.type = 'm.room.name' AND s.state_key = '')"
|
||||
sql += " OR s.type = 'm.room.aliases'"
|
||||
sql += " AND ((s.type = 'm.room.name' AND s.state_key = '')"
|
||||
sql += " OR s.type = 'm.room.aliases')"
|
||||
args = (room_id,)
|
||||
|
||||
results = yield self._execute_and_decode(sql, *args)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue