mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Bug #973
- Fixed bug #973, including 'urgency' in the 'export' output (thanks to Andy Spiegl).
This commit is contained in:
parent
d6d9fbd8e7
commit
0918a7c79a
5 changed files with 25 additions and 10 deletions
|
@ -646,6 +646,12 @@ std::string Task::composeJSON (bool include_id /*= false*/) const
|
|||
out << "]";
|
||||
}
|
||||
|
||||
// Include urgency.
|
||||
out << ","
|
||||
<< "\"urgency\":\""
|
||||
<< urgency_c ()
|
||||
<<"\"";
|
||||
|
||||
out << "}";
|
||||
return out.str ();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue