Bug 449 - Inconsistent wait: attribute results
- Fixed bug #449, so the wait: attribute can be applied to a task at any time, not just on add. - While searching for problems with the waiting status, noticed that importCSV doesn't appear to set any tasks to pending status.
This commit is contained in:
@@ -1075,6 +1075,7 @@ static std::string importCSV (const std::vector <std::string>& lines)
|
||||
{
|
||||
std::string value = lowerCase (unquoteText (trim (fields[f])));
|
||||
|
||||
// TODO What happened to "pending"?
|
||||
if (value == "recurring") task.setStatus (Task::recurring);
|
||||
else if (value == "deleted") task.setStatus (Task::deleted);
|
||||
else if (value == "completed") task.setStatus (Task::completed);
|
||||
|
||||
Reference in New Issue
Block a user