修改PI 审核空数组
parent
9425fc521e
commit
a61b20ace6
|
@ -55,7 +55,7 @@ namespace IRaCIS.Core.Domain.Models
|
|||
|
||||
try
|
||||
{
|
||||
return this.PIAuditImagePath?.Trim().Split('|').ToList();
|
||||
return this.PIAuditImagePath?.Trim().Split('|', StringSplitOptions.RemoveEmptyEntries).ToList();
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
|
|
|
@ -437,7 +437,7 @@ namespace IRaCIS.Core.Domain.Models
|
|||
|
||||
try
|
||||
{
|
||||
return this.PIAuditImagePath?.Trim().Split('|').ToList();
|
||||
return this.PIAuditImagePath?.Trim().Split('|',StringSplitOptions.RemoveEmptyEntries).ToList();
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue