diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-10-03 16:16:38 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-10-03 16:20:54 +0900 |
commit | c9dc5e12b835425f1ba5c447ddb3c3394ccac93e (patch) | |
tree | aae17c783a7ce9518072f284a61ad9f3c473fdee /events | |
parent | 21fa206adab838fe90c84b16e910d1b696da0e28 (diff) | |
download | libquotient-c9dc5e12b835425f1ba5c447ddb3c3394ccac93e.tar.gz libquotient-c9dc5e12b835425f1ba5c447ddb3c3394ccac93e.zip |
Room: cache unread indicator inside m.read content, not next to it
The CS API, turns out, has a quite official extension point inside m.read event content - clients are allowed to put whatever extra data they feel reasonable.
Diffstat (limited to 'events')
-rw-r--r-- | events/receiptevent.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/events/receiptevent.cpp b/events/receiptevent.cpp index 3d6be9f1..646bb989 100644 --- a/events/receiptevent.cpp +++ b/events/receiptevent.cpp @@ -66,6 +66,11 @@ ReceiptEvent::ReceiptEvent(const QJsonObject& obj) } _eventsWithReceipts.push_back({eventIt.key(), receipts}); } - _unreadMessages = obj["x-qmatrixclient.unread_messages"].toBool(); + static const auto UnreadMsgsKey = + QStringLiteral("x-qmatrixclient.unread_messages"); + if (contents.contains(UnreadMsgsKey)) + _unreadMessages = contents["x-qmatrixclient.unread_messages"].toBool(); + else + _unreadMessages = obj["x-qmatrixclient.unread_messages"].toBool(); } |