mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Bug
- Fixed a bug that caused a commond dateformat (YDM-HN) to be misinterpreted as a UUID. Solution is to increase minimum partial UUID length from 9 to 14.
This commit is contained in:
parent
561102b70b
commit
c20c025c8e
4 changed files with 22 additions and 25 deletions
|
@ -41,7 +41,7 @@
|
|||
#include <util.h>
|
||||
|
||||
static const char* _uuid_pattern = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx";
|
||||
static const unsigned int _uuid_min_length = 9;
|
||||
static const unsigned int _uuid_min_length = 14;
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
Nibbler::Nibbler ()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue