CLOUD: Fix '\' encoding back
This commit is contained in:
parent
30430b379f
commit
35b2471290
1 changed files with 0 additions and 2 deletions
|
@ -40,8 +40,6 @@ Common::String encodeDoubleQuotes(Common::String s) {
|
||||||
for (uint32 i = 0; i < s.size(); ++i)
|
for (uint32 i = 0; i < s.size(); ++i)
|
||||||
if (s[i] == '"') {
|
if (s[i] == '"') {
|
||||||
result += "\\\"";
|
result += "\\\"";
|
||||||
} else if (s[i] == '\\') {
|
|
||||||
result += "\\\\";
|
|
||||||
} else result += s[i];
|
} else result += s[i];
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue