mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-04 12:28:35 +02:00
Bug fix - Task.cpp
completing a task did set a entry date to completed date.
This commit is contained in:
parent
92f7d805d0
commit
a8759c9196
1 changed files with 1 additions and 1 deletions
|
@ -1021,7 +1021,7 @@ void Task::validate ()
|
||||||
if (! has ("end") &&
|
if (! has ("end") &&
|
||||||
(getStatus () == Task::completed ||
|
(getStatus () == Task::completed ||
|
||||||
getStatus () == Task::deleted))
|
getStatus () == Task::deleted))
|
||||||
set ("end", get ("entry"));
|
setEnd ();
|
||||||
|
|
||||||
// Override with default.project, if not specified.
|
// Override with default.project, if not specified.
|
||||||
if (! has ("project"))
|
if (! has ("project"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue