mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Bug Fix - Att
- The "due" date was not being parsed according to the desired dateformat, but in the default "m/d/Y".
This commit is contained in:
parent
9c2e70b73a
commit
456a493ab5
1 changed files with 1 additions and 1 deletions
|
@ -333,7 +333,7 @@ bool Att::validNameValue (
|
|||
{
|
||||
// Validate and convert to epoch.
|
||||
if (value != "")
|
||||
value = Date (value).toEpochString ();
|
||||
value = Date (value, context.config.get ("dateformat", "m/d/Y")).toEpochString ();
|
||||
}
|
||||
|
||||
else if (name == "recur")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue