diff --git a/uppsrc/Core/JSON.h b/uppsrc/Core/JSON.h index 0253367f2..68b1b0ca9 100644 --- a/uppsrc/Core/JSON.h +++ b/uppsrc/Core/JSON.h @@ -19,7 +19,7 @@ class Json { Json& CatRaw(const char *key, const String& val) { if(text.GetCount()) text << ','; - text << '\"' << key << "\":" << val; + text << AsJSON(key) << ":" << val; return *this; }