aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2019-12-09 11:52:26 +0300
committerKitsune Ral <Kitsune-Ral@users.sf.net>2019-12-09 11:52:26 +0300
commite829f867c14cb51e89e4d10550f2f41329c14ba8 (patch)
tree40ba92e065747743c2579d9597681a2f66c977d9
parentbb44e61bab711327d1ae9f0d0732364006296c0e (diff)
downloadlibquotient-e829f867c14cb51e89e4d10550f2f41329c14ba8.tar.gz
libquotient-e829f867c14cb51e89e4d10550f2f41329c14ba8.zip
Initialise read marker if none is found in the whole timeline
Closes #361.
-rw-r--r--lib/room.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/room.cpp b/lib/room.cpp
index 71d76f66..8253ea42 100644
--- a/lib/room.cpp
+++ b/lib/room.cpp
@@ -515,7 +515,9 @@ void Room::Private::updateUnreadCount(rev_iter_t from, rev_iter_t to)
// that has just arrived. In this case we should recalculate
// unreadMessages and might need to promote the read marker further
// over local-origin messages.
- const auto readMarker = q->readMarker();
+ auto readMarker = q->readMarker();
+ if (readMarker == timeline.crend() && q->allHistoryLoaded())
+ --readMarker; // Read marker not found in the timeline, initialise it
if (readMarker >= from && readMarker < to) {
promoteReadMarker(q->localUser(), readMarker, true);
return;