* Search for correct element type when checking array types

This commit is contained in:
Michaël Van Canneyt 2024-11-25 21:57:32 +01:00
parent 0ca0990e8b
commit 8cedb10c3a

View File

@ -876,7 +876,11 @@ begin
lElTypeData:=GetSchemaTypeData(Nil,lSchema.Items[0]);
// Data.FindSchemaTypeData('Array of string')
lPascalName:=ArrayTypePrefix+lElTypeData.PascalName+ArrayTypeSuffix;
lName:='['+lElTypeData.SchemaName+']';
lName:='['+lElTypeData.SchemaName;
if lSchema.Items[0].Validations.HasKeywordData(jskformat) then
lName:=lName+'--'+lSchema.Items[0].Validations.Format;
lName:=LName+']';
Result:=FindSchemaTypeData(lName);
if Result<>Nil then
lName:='';