diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-08-18 19:22:59 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-18 19:22:59 +0900 |
commit | 618b0dfd5434fc4e99fe8a19d03b3c50c57cb76b (patch) | |
tree | 1f7d1fb1221d998a41ec9990635bd8f68617ec1a | |
parent | 7e4e7e9cf10828192482f91748cf29807f101f36 (diff) | |
parent | 5d94e0fa2a3cd1e43b99b0c309bc9e84c6850378 (diff) | |
download | libquotient-618b0dfd5434fc4e99fe8a19d03b3c50c57cb76b.tar.gz libquotient-618b0dfd5434fc4e99fe8a19d03b3c50c57cb76b.zip |
Merge pull request #345 from rpallai/UnreadNotifsChange
Update the cache for sure if unread counters were changed
-rw-r--r-- | lib/room.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/room.cpp b/lib/room.cpp index 0c6471e5..f7d3a797 100644 --- a/lib/room.cpp +++ b/lib/room.cpp @@ -1383,15 +1383,18 @@ void Room::updateData(SyncRoomData&& data, bool fromCache) if (data.unreadCount != -2 && data.unreadCount != d->unreadMessages) { qCDebug(MAIN) << "Setting unread_count to" << data.unreadCount; d->unreadMessages = data.unreadCount; + roomChanges |= Change::UnreadNotifsChange; emit unreadMessagesChanged(this); } if (data.highlightCount != d->highlightCount) { d->highlightCount = data.highlightCount; + roomChanges |= Change::UnreadNotifsChange; emit highlightCountChanged(); } if (data.notificationCount != d->notificationCount) { d->notificationCount = data.notificationCount; + roomChanges |= Change::UnreadNotifsChange; emit notificationCountChanged(); } if (roomChanges != Change::NoChange) { |