Little tweak.

This commit is contained in:
Martin Rotter 2014-03-29 13:07:34 +01:00
parent 4824147279
commit 539f1dd68b

View File

@ -101,7 +101,7 @@ void FeedsModelFeed::updateCounts(bool including_total_count, bool update_feed_s
query_all.next()) { query_all.next()) {
int new_unread_count = query_all.value(0).toInt(); int new_unread_count = query_all.value(0).toInt();
if (update_feed_statuses && m_status == NewMessages && new_unread_count != m_unreadCount) { if (update_feed_statuses && m_status == NewMessages && new_unread_count < m_unreadCount) {
m_status = Normal; m_status = Normal;
} }