mirror of
https://github.com/matrix-construct/construct
synced 2024-11-29 02:02:38 +01:00
modules/client/rooms/aliases: Fix spec conformance; only return local aliases.
This commit is contained in:
parent
1da91f41b3
commit
500413701b
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ get__aliases(client &client,
|
|||
top, "aliases"
|
||||
};
|
||||
|
||||
aliases.for_each([&array]
|
||||
aliases.for_each(my_host(), [&array]
|
||||
(const m::room::alias &room_alias)
|
||||
{
|
||||
array.append(room_alias);
|
||||
|
|
Loading…
Reference in a new issue