This commit is contained in:
he
2022-11-29 09:21:02 +08:00
parent 551210901b
commit 576fca6d11
3 changed files with 6 additions and 4 deletions
@@ -184,7 +184,8 @@ namespace IRaCIS.Core.Domain.Models
try
{
return JsonConvert.DeserializeObject<List<ImageInfo>>(this.ImagePath);
var result= JsonConvert.DeserializeObject<List<ImageInfo>>(this.ImagePath);
return result==null?new List<ImageInfo>() : result;
}
catch (Exception)
{