From d1fd237d8f917d393a2a8491abc1554abd398085 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Tue, 5 Sep 2017 12:09:29 +0900 Subject: Include unread/notification counters to the cache --- room.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/room.cpp b/room.cpp index 212c8acd..1393e145 100644 --- a/room.cpp +++ b/room.cpp @@ -938,6 +938,12 @@ QJsonObject Room::Private::toJson() const { QJsonObject result; result.insert("state", roomStateObj); + + QJsonObject unreadNotificationsObj; + unreadNotificationsObj.insert("highlight_count", highlightCount); + unreadNotificationsObj.insert("notification_count", notificationCount); + result.insert("unread_notifications", unreadNotificationsObj); + return result; } -- cgit v1.2.3