- Now decodes backslashes on annotation add.
This commit is contained in:
Paul Beckingham 2014-08-31 13:26:06 -04:00
parent bd4a7081c1
commit 2e3be1c5a0

View file

@ -1047,7 +1047,7 @@ void Task::addAnnotation (const std::string& description)
}
while (has (key));
(*this)[key] = description;
(*this)[key] = json::decode (description);
++annotation_count;
recalc_urgency = true;
}