mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-08-22 10:34:54 -05:00
Fix null errors in JsonArrayValidator
This commit is contained in:
@@ -163,6 +163,11 @@ namespace UniJSON
|
||||
return new JsonSchemaValidationException(context, "minItems");
|
||||
}
|
||||
|
||||
if (Items == null)
|
||||
{
|
||||
return null; // There are no json schema for items, success
|
||||
}
|
||||
|
||||
var v = Items.Validator;
|
||||
var t = o.GetType();
|
||||
IEnumerable iter = null;
|
||||
|
||||
Reference in New Issue
Block a user