aboutsummaryrefslogtreecommitdiff
path: root/room.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'room.cpp')
-rw-r--r--room.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/room.cpp b/room.cpp
index 64ff8cd6..05b16b65 100644
--- a/room.cpp
+++ b/room.cpp
@@ -994,14 +994,12 @@ QJsonObject Room::Private::toJson() const
QJsonObject lastReadEvent;
lastReadEvent.insert(q->readMarkerEventId(), receipt);
+ lastReadEvent.insert("x-qmatrixclient.unread_messages",
+ unreadMessages);
QJsonObject receiptsObj;
receiptsObj.insert("type", QStringLiteral("m.receipt"));
receiptsObj.insert("content", lastReadEvent);
- // In extension of the spec we add a hint to the receipt event
- // to allow setting the unread indicator without downloading
- // and analysing the timeline.
- receiptsObj.insert("x-qmatrixclient.unread_messages", unreadMessages);
ephemeralEvents.append(receiptsObj);
}