Merge pull request #40606 from adam-bates/issue-40396_add_missing_json_errors
issue-40396 - Added missing error strings to JSON parsing when array …
This commit is contained in:
commit
2267caa4a1
|
@ -371,6 +371,7 @@ Error JSON::_parse_array(Array &array, const CharType *p_str, int &index, int p_
|
|||
need_comma = true;
|
||||
}
|
||||
|
||||
r_err_str = "Expected ']'";
|
||||
return ERR_PARSE_ERROR;
|
||||
}
|
||||
|
||||
|
@ -433,6 +434,7 @@ Error JSON::_parse_object(Dictionary &object, const CharType *p_str, int &index,
|
|||
}
|
||||
}
|
||||
|
||||
r_err_str = "Expected '}'";
|
||||
return ERR_PARSE_ERROR;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue