diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-07-23 19:49:00 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-07-23 19:49:00 +0900 |
commit | cbb8c1bf4e33639d8a00341021542de99bd6bce2 (patch) | |
tree | 77a13fb1502a93df82f79341d71684948c4a77a2 | |
parent | 716aa2a97d6654cc45ed6a9c8b08cad6d833e301 (diff) | |
download | libquotient-cbb8c1bf4e33639d8a00341021542de99bd6bce2.tar.gz libquotient-cbb8c1bf4e33639d8a00341021542de99bd6bce2.zip |
Fix rooms tags being incorrectly set
Many thanks to @encombhat for pinpointing.
-rw-r--r-- | lib/room.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/room.cpp b/lib/room.cpp index 1668fdb7..a8007f20 100644 --- a/lib/room.cpp +++ b/lib/room.cpp @@ -225,7 +225,7 @@ class Room::Private { connection->callApi<SetAccountDataPerRoomJob>( connection->userId(), id, TagEvent::matrixTypeId(), - TagEvent(tags).fullJson()); + TagEvent(tags).contentJson()); emit q->tagsChanged(); } |