diff options
author | Erwin Hoffmann <feh@fehcom.de> | 2023-10-05 21:53:06 +0200 |
---|---|---|
committer | Erwin Hoffmann <feh@fehcom.de> | 2023-10-05 21:53:06 +0200 |
commit | 73052716e187296a969dfb14837a8380e4593345 (patch) | |
tree | 45fa20e38425de3671f5b92c03c8de78336cb913 | |
parent | ec566f2903ddb204aef6172ed800c7654e8b91c5 (diff) |
wrong parenthesis setting in pending-updated.cc
-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) { |