From: Martin Mares Date: Sun, 15 Feb 2015 19:43:38 +0000 (+0100) Subject: Bugfix: Running mutt on a mailbox did not order it refreshed X-Git-Tag: v1.9~1 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;ds=sidebyside;h=c52fe8807162471e0e6e070407b228a379ea8a83;p=checkmail.git Bugfix: Running mutt on a mailbox did not order it refreshed --- diff --git a/cm.c b/cm.c index 9bc0366..a2c27d2 100644 --- a/cm.c +++ b/cm.c @@ -781,7 +781,8 @@ scan(int notify) debug("inactive\n"); continue; } - b->force_refresh = force_refresh; + if (force_refresh) + b->force_refresh = 1; if (stat(b->path, &st) < 0) { b->total = b->new = b->flagged = -1;