From d38020752c4a03fdc5b74f9704b28b302ec5ebf8 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Mon, 26 Mar 2018 23:13:42 +0900 Subject: Room::updateUnreadCount(): Fix a too stringent assertion --- room.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/room.cpp b/room.cpp index 01cba079..d7014a10 100644 --- a/room.cpp +++ b/room.cpp @@ -368,7 +368,7 @@ void Room::Private::setLastReadEvent(User* u, const QString& eventId) void Room::Private::updateUnreadCount(timeline_iter_t from, int knownMinimum) { - Q_ASSERT(from >= q->readMarker().base() && from < timeline.cend()); + Q_ASSERT(from >= q->readMarker().base() && from <= timeline.cend()); auto oldUnreadCount = unreadMessages; QElapsedTimer et; et.start(); // A cast to int, because on some environments count_if returns a long; -- cgit v1.2.3