diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-12-09 11:52:26 +0300 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-12-09 11:52:26 +0300 |
commit | e829f867c14cb51e89e4d10550f2f41329c14ba8 (patch) | |
tree | 40ba92e065747743c2579d9597681a2f66c977d9 | |
parent | bb44e61bab711327d1ae9f0d0732364006296c0e (diff) | |
download | libquotient-e829f867c14cb51e89e4d10550f2f41329c14ba8.tar.gz libquotient-e829f867c14cb51e89e4d10550f2f41329c14ba8.zip |
Initialise read marker if none is found in the whole timeline
Closes #361.
-rw-r--r-- | lib/room.cpp | 4 |
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; |