lihao 4 年之前
父節點
當前提交
2b797bfbf6
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4 1
      gx_api/GxPress/Service/GxPress.Service.Implement/Collection/CollectionService.cs

+ 4 - 1
gx_api/GxPress/Service/GxPress.Service.Implement/Collection/CollectionService.cs

@@ -366,7 +366,10 @@ namespace GxPress.Service.Implement.Collection
             foreach (var item in result.Items)
             {
                 //item.Data = await StructCollectionData(item.CollectionDataId, item.CollectionType, item.SourceUserId);
-                item.Data = JsonConvert.DeserializeObject<CollectionContentJsonData>(item.ResultJson);
+                if (!string.IsNullOrEmpty(item.ResultJson))
+                    item.Data = JsonConvert.DeserializeObject<CollectionContentJsonData>(item.ResultJson);
+                else
+                    item.Data = new CollectionContentJsonData();
                 if (item.Data != null)
                 {
                     item.Data.File = StringUtils.RemoveDomain(item.Data.File);