提交阿里云

This commit is contained in:
2022-12-12 09:26:41 +08:00
committed by he
parent 6af7c79adc
commit ce024cae7a
2 changed files with 8 additions and 5 deletions
@@ -237,11 +237,7 @@ namespace IRaCIS.Core.Application.Services
.SelectMany(u =>
{
if (u.NumberOfFrames == 1)
{
return new List<string> { u.Path };
}
else
if (u.NumberOfFrames > 1)
{
var pathList = new List<string>();
@@ -251,6 +247,11 @@ namespace IRaCIS.Core.Application.Services
}
return pathList;
}
else
{
return new List<string> { u.Path };
}
})
.ToList();