You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-12 13:20:55 +00:00
Add missing characters for property name quoting
This commit is contained in:
@@ -4420,7 +4420,7 @@ String String::property_name_encode() const {
|
|||||||
// as well as '"', '=' or ' ' (32)
|
// as well as '"', '=' or ' ' (32)
|
||||||
const char32_t *cstr = get_data();
|
const char32_t *cstr = get_data();
|
||||||
for (int i = 0; cstr[i]; i++) {
|
for (int i = 0; cstr[i]; i++) {
|
||||||
if (cstr[i] == '=' || cstr[i] == '"' || cstr[i] < 33 || cstr[i] > 126) {
|
if (cstr[i] == '=' || cstr[i] == '"' || cstr[i] == ';' || cstr[i] == '[' || cstr[i] == ']' || cstr[i] < 33 || cstr[i] > 126) {
|
||||||
return "\"" + c_escape_multiline() + "\"";
|
return "\"" + c_escape_multiline() + "\"";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user