mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Merge branch 'master' into 2.4.0
This commit is contained in:
commit
cd6067a39f
31 changed files with 139 additions and 219 deletions
|
@ -674,7 +674,9 @@ void CmdEdit::parseTask (Task& task, const std::string& after, const std::string
|
|||
{
|
||||
std::string value = findValue (after, "\n UDA " + col->first + ":");
|
||||
if ((task.get (col->first) != value) && (type != "date" ||
|
||||
(task.get (col->first) != Date(value, dateformat).toEpochString ())))
|
||||
(task.get (col->first) != Date (value, dateformat).toEpochString ())) &&
|
||||
(type != "duration" ||
|
||||
(task.get (col->first) != (std::string) OldDuration (value) )))
|
||||
{
|
||||
if (value != "")
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue