- Now decodes backslashes on attribute set.
This commit is contained in:
Paul Beckingham 2014-08-31 13:25:46 -04:00
parent 819d15b2a1
commit bd4a7081c1

View file

@ -303,7 +303,7 @@ time_t Task::get_date (const std::string& name) const
////////////////////////////////////////////////////////////////////////////////
void Task::set (const std::string& name, const std::string& value)
{
(*this)[name] = value;
(*this)[name] = json::decode (value);
recalc_urgency = true;
}