mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Fix alias query.
This commit is contained in:
parent
2b8ca84296
commit
2c79c4dc7f
@ -141,20 +141,19 @@ class DirectoryStore(SQLBaseStore):
|
|||||||
Returns:
|
Returns:
|
||||||
A list of RoomAliasMappings.
|
A list of RoomAliasMappings.
|
||||||
"""
|
"""
|
||||||
results = self._simple_select_list(
|
results = yield self._execute_and_decode(
|
||||||
"room_aliases",
|
"SELECT room_id, room_alias FROM room_aliases"
|
||||||
None,
|
|
||||||
["room_alias", "room_id"]
|
|
||||||
)
|
)
|
||||||
|
|
||||||
# TODO(kegan): It feels wrong to be specifying no servers here, but
|
# TODO(kegan): It feels wrong to be specifying no servers here, but
|
||||||
# equally this function isn't required to obtain all servers so
|
# equally this function isn't required to obtain all servers so
|
||||||
# retrieving them "just for the sake of it" also seems wrong, but we
|
# retrieving them "just for the sake of it" also seems wrong, but we
|
||||||
# want to conform to passing Objects around and not dicts..
|
# want to conform to passing Objects around and not dicts..
|
||||||
return [
|
defer.returnValue([
|
||||||
RoomAliasMapping(
|
RoomAliasMapping(
|
||||||
room_id=r["room_id"], room_alias=r["room_alias"], servers=""
|
room_id=r["room_id"], room_alias=r["room_alias"], servers=""
|
||||||
) for r in results
|
) for r in results
|
||||||
]
|
])
|
||||||
|
|
||||||
|
|
||||||
def get_aliases_for_room(self, room_id):
|
def get_aliases_for_room(self, room_id):
|
||||||
|
Loading…
Reference in New Issue
Block a user