- Fixed bug #973, including 'urgency' in the 'export' output (thanks to Andy
  Spiegl).
This commit is contained in:
Paul Beckingham 2012-04-15 19:45:42 -04:00
parent d6d9fbd8e7
commit 0918a7c79a
5 changed files with 25 additions and 10 deletions

View file

@ -646,6 +646,12 @@ std::string Task::composeJSON (bool include_id /*= false*/) const
out << "]";
}
// Include urgency.
out << ","
<< "\"urgency\":\""
<< urgency_c ()
<<"\"";
out << "}";
return out.str ();
}