Merge pull request #533 from rafzi/develop

fix JSON stringify to escape special characters
This commit is contained in:
Günter Obiltschnig 2014-09-18 16:59:33 +02:00
Родитель e30ff7dd8c a787b4f898
Коммит 6c77947085
1 изменённых файлов: 1 добавлений и 5 удалений

Просмотреть файл

@ -55,15 +55,11 @@ void Stringifier::stringify(const Var& any, std::ostream& out, unsigned int inde
{
out << "null";
}
else if ( any.isString() )
else
{
std::string value = any.convert<std::string>();
formatString(value, out);
}
else
{
out << any.convert<std::string>();
}
}