Bug #595
- Fixed bug #595, where taskwarrior ignored changes to the wait date during the edit command, consequently not changing task status (thanks to Eric Fluger).
This commit is contained in:
@@ -557,7 +557,8 @@ std::string taskInfoDifferences (const Task& before, const Task& after)
|
||||
std::string renderAttribute (const std::string& name, const std::string& value)
|
||||
{
|
||||
Att a;
|
||||
if (a.type (name) == "date")
|
||||
if (a.type (name) == "date" &&
|
||||
value != "")
|
||||
{
|
||||
Date d ((time_t)::atoi (value.c_str ()));
|
||||
return d.toString (context.config.get ("dateformat"));
|
||||
|
||||
Reference in New Issue
Block a user