aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--room.cpp6
1 files changed, 6 insertions, 0 deletions
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;
}