aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2019-07-06 12:35:45 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2019-07-06 12:35:45 +0900
commit9ad25f204fa6caadf93203c42f3ea7de17dceab0 (patch)
tree95596b1eb28c5bc2b45a9186b42311f16743dec1 /lib
parent281e3235d3d4618afd9f01049b8a2acbe1c8475c (diff)
downloadlibquotient-9ad25f204fa6caadf93203c42f3ea7de17dceab0.tar.gz
libquotient-9ad25f204fa6caadf93203c42f3ea7de17dceab0.zip
Room::setLocalAliases: now actually working (with a caveat)
The caveat is that the library doesn't support .well-known yet, therefore will work not fully correctly (in particular - won't correctly set aliases) with servers that have serverpart different from the homeserver hostname used to connect to it.
Diffstat (limited to 'lib')
-rw-r--r--lib/room.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/room.cpp b/lib/room.cpp
index 06f3490c..c5367047 100644
--- a/lib/room.cpp
+++ b/lib/room.cpp
@@ -1640,7 +1640,8 @@ void Room::setCanonicalAlias(const QString& newAlias)
void Room::setLocalAliases(const QStringList& aliases)
{
- d->requestSetState(RoomAliasesEvent(aliases));
+ d->requestSetState(connection()->homeserver().authority(),
+ RoomAliasesEvent(aliases));
}
void Room::setTopic(const QString& newTopic)