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:
@@ -1416,7 +1416,7 @@ void Parser::findUUIDList ()
|
||||
continue;
|
||||
|
||||
// Easy disqualifiers.
|
||||
if (raw.find_first_not_of ("0123456789abcdefABCDEF-") != std::string::npos)
|
||||
if (raw.find_first_not_of ("0123456789abcdefABCDEF-,") != std::string::npos)
|
||||
break;
|
||||
|
||||
Nibbler n (raw);
|
||||
|
||||
Reference in New Issue
Block a user