--nn
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
RenX.ServerList/RenX_ServerList.cpp
|
@ -52,7 +52,7 @@ Jupiter::String jsonify(const Jupiter::ReadableString &in_str) |
|
|
result += '\"'; |
|
|
result += '\"'; |
|
|
} |
|
|
} |
|
|
else if (*ptr < 0x20) // control characters
|
|
|
else if (*ptr < 0x20) // control characters
|
|
|
result.aformat("\\u00%x", *ptr); |
|
|
result.aformat("\\u%04x", *ptr); |
|
|
else if ((*ptr & 0x80) != 0) // UTF-8 sequence; copy to bypass above processing |
|
|
else if ((*ptr & 0x80) != 0) // UTF-8 sequence; copy to bypass above processing |
|
|
{ |
|
|
{ |
|
|
result += *ptr; |
|
|
result += *ptr; |
|
@ -105,7 +105,7 @@ Jupiter::String sanitize_game(const Jupiter::ReadableString &in_str) |
|
|
result += '\"'; |
|
|
result += '\"'; |
|
|
} |
|
|
} |
|
|
else if (*ptr < 0x20) // control characters
|
|
|
else if (*ptr < 0x20) // control characters
|
|
|
result.aformat("\\u00%x", *ptr); |
|
|
result.aformat("\\u%04x", *ptr); |
|
|
else if (*ptr == '~') // Game server list control character
|
|
|
else if (*ptr == '~') // Game server list control character
|
|
|
result += "\\u007E"_jrs; |
|
|
result += "\\u007E"_jrs; |
|
|
else if (*ptr == ';') // Game server list control character
|
|
|
else if (*ptr == ';') // Game server list control character
|
|
|