CLOUD: Fix '\' encoding back

This commit is contained in:
Alexander Tkachev 2016-07-09 17:17:52 +06:00
parent 30430b379f
commit 35b2471290

View file

@ -40,8 +40,6 @@ Common::String encodeDoubleQuotes(Common::String s) {
for (uint32 i = 0; i < s.size(); ++i)
if (s[i] == '"') {
result += "\\\"";
} else if (s[i] == '\\') {
result += "\\\\";
} else result += s[i];
return result;
}