mirror of
https://github.com/godotengine/godot.git
synced 2025-01-26 20:02:02 +00:00
Merge pull request #7743 from karroffel/json_parsing-3.0
JSON::parse reports errors on open-ended objects (master)
This commit is contained in:
commit
5ce18cbdb9
@ -374,7 +374,7 @@ Error JSON::_parse_array(Array &array,const CharType *p_str,int &index, int p_le
|
||||
|
||||
}
|
||||
|
||||
return OK;
|
||||
return ERR_PARSE_ERROR;
|
||||
|
||||
}
|
||||
|
||||
@ -446,7 +446,7 @@ Error JSON::_parse_object(Dictionary &object,const CharType *p_str,int &index, i
|
||||
}
|
||||
}
|
||||
|
||||
return OK;
|
||||
return ERR_PARSE_ERROR;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user