Merge branch 'feature/high-bug' into pre

This commit is contained in:
wangli 2026-02-05 13:43:36 +08:00
commit 9c4b598c5d

View File

@ -365,7 +365,7 @@ public class CustomGetFormInstanceModelCmd extends GetFormInstanceModelCmd {
if (rowMap.containsKey(sf.getId())) {
try {
String updateValueJson = objectMapper.writeValueAsString(rowMap.get(sf.getId()));
if (StringUtils.hasText(updateValueJson)) {
if (StringUtils.hasText(updateValueJson) && !Objects.equals("\"\"", updateValueJson)) {
List<UploadFieldDTO> uploadFiles = formEngineConfiguration.getObjectMapper()
.readValue(updateValueJson, new TypeReference<List<UploadFieldDTO>>() {
});