diff options
-rw-r--r-- | src/pendingupdates.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pendingupdates.cc b/src/pendingupdates.cc index 337c21a..0f76526 100644 --- a/src/pendingupdates.cc +++ b/src/pendingupdates.cc @@ -222,7 +222,7 @@ bool Binc::pendingUpdates(Mailbox *mailbox, int type, bool rescan, bool showAll, if (((type & PendingUpdates::EXISTS) && p.newExists()) || showAll) bincClient << "* " << p.getExists() << " EXISTS" << endl; - if (((type & PendingUpdates::RECENT) && p.newRecent() || showAll)) + if (((type & PendingUpdates::RECENT) && p.newRecent()) || showAll) bincClient << "* " << p.getRecent() << " RECENT" << endl; if (type & PendingUpdates::FLAGS) { |