From 21b5df0ced4381fd3f48ce40d096631edf12ec68 Mon Sep 17 00:00:00 2001 From: ak1 Date: Mon, 14 Feb 2005 14:44:59 +0000 Subject: [PATCH] Andreas Krennmair: added quick fix from Markus Sagebiel git-svn-id: svn://svn.berlios.de/mutt-ng/trunk@63 e385b8ad-14ed-0310-8656-cc95a2468c6d --- buffy.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/buffy.c b/buffy.c index 93a5716..7f5b4b7 100644 --- a/buffy.c +++ b/buffy.c @@ -411,10 +411,13 @@ int mutt_buffy_check (int force) (!(p = strstr (de->d_name, ":2,")) || !strchr (p + 3, 'T'))) { /* one new and undeleted message is enough */ - BuffyCount++; - tmp->has_new = tmp->new = 1; - tmp->msgcount++; - tmp->msg_unread++; + if (tmp->new != 1) + { + BuffyCount++; + tmp->has_new = tmp->new = 1; + } + tmp->msgcount++; + tmp->msg_unread++; } } closedir (dirp); -- 2.20.1