mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Parser
- UUIDs were being rejected because the contain commas, which are actually part of a UUID list. This meant that 'task $UUID1,$UUID2 info' failed.
This commit is contained in:
parent
87538589a6
commit
811d0e029d
1 changed files with 1 additions and 1 deletions
|
@ -1416,7 +1416,7 @@ void Parser::findUUIDList ()
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
// Easy disqualifiers.
|
// Easy disqualifiers.
|
||||||
if (raw.find_first_not_of ("0123456789abcdefABCDEF-") != std::string::npos)
|
if (raw.find_first_not_of ("0123456789abcdefABCDEF-,") != std::string::npos)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
Nibbler n (raw);
|
Nibbler n (raw);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue