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