Compare commits
2 Commits
fd0d91faa4
...
c03fd57c25
Author | SHA1 | Date |
---|---|---|
|
c03fd57c25 | |
|
34d5f809ee |
|
@ -601,9 +601,9 @@ namespace IRaCIS.Core.Application.Services
|
|||
item.InstanceInfoList.ForEach(x =>
|
||||
{
|
||||
|
||||
var keyFramesList = rowInfoList.Where(y => y.InstanceId == x.Id).Select(y => y.NumberOfFrames).Distinct().ToList();
|
||||
var keyFramesList = rowInfoList.Where(y => y.InstanceId == x.Id&&y.NumberOfFrames!=0).Select(y => y.NumberOfFrames).Distinct().ToList();
|
||||
|
||||
if (keyFramesList.Count() > 1)
|
||||
if (keyFramesList.Count() > 0)
|
||||
{
|
||||
x.KeyFramesList = keyFramesList;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue