Pool 적용 버그 잡는 중

This commit is contained in:
logonkhi
2025-06-27 17:50:23 +09:00
parent 935979a696
commit 750d38153d
32 changed files with 1977 additions and 218 deletions

View File

@@ -327,6 +327,10 @@ namespace UVC.Data
mappedObject = info.DataMapper.Map(source);
}
}
else
{
mappedObject = new DataObject(result);
}
}
else if (result.StartsWith("["))
{
@@ -403,6 +407,11 @@ namespace UVC.Data
}
}
}
else
{
// DataMapper가 없는 경우, JArray를 IDataObject로 변환
mappedObject = new DataArray(result);
}
}
}
catch (JsonException ex)