mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
CLI2: Fixed bug where MODIFICATION tags were expanded as a filter
This commit is contained in:
parent
15e9c91d85
commit
7c604cdb8f
1 changed files with 2 additions and 1 deletions
|
@ -843,7 +843,8 @@ void CLI2::desugarFilterTags ()
|
|||
std::vector <A2> reconstructed;
|
||||
for (auto& a : _args)
|
||||
{
|
||||
if (a._lextype == Lexer::Type::tag)
|
||||
if (a.hasTag ("FILTER") &&
|
||||
a._lextype == Lexer::Type::tag)
|
||||
{
|
||||
changes = true;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue