Filter: Fix copy-paste error in pendingOnly

This commit is contained in:
Tomas Babej 2021-04-24 11:56:24 -04:00
parent c7fd6b798b
commit 5e87be4641

View file

@ -227,8 +227,8 @@ bool Filter::pendingOnly () const
if (a._lextype == Lexer::Type::op && raw == "not") ++countNot;
if (a._lextype == Lexer::Type::dom && canonical == "status") ++countStatus;
if ( raw == "pending") ++countPending;
if ( raw == "waiting") ++countPending;
if ( raw == "recurring") ++countPending;
if ( raw == "waiting") ++countWaiting;
if ( raw == "recurring") ++countRecurring;
}
}