From 2e3be1c5a0ef1ae3850c4b89f261ba3141fd6645 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 31 Aug 2014 13:26:06 -0400 Subject: [PATCH] Task - Now decodes backslashes on annotation add. --- src/Task.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Task.cpp b/src/Task.cpp index ad99e8b1d..b07af1e8a 100644 --- a/src/Task.cpp +++ b/src/Task.cpp @@ -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; }