Compare commits
No commits in common. "c03fd57c25cc12c823ddca5a46f323b7d2ddb92e" and "fd0d91faa4fab725521030fea54a053793ed6ffb" have entirely different histories.
c03fd57c25
...
fd0d91faa4
|
|
@ -601,9 +601,9 @@ namespace IRaCIS.Core.Application.Services
|
||||||
item.InstanceInfoList.ForEach(x =>
|
item.InstanceInfoList.ForEach(x =>
|
||||||
{
|
{
|
||||||
|
|
||||||
var keyFramesList = rowInfoList.Where(y => y.InstanceId == x.Id&&y.NumberOfFrames!=0).Select(y => y.NumberOfFrames).Distinct().ToList();
|
var keyFramesList = rowInfoList.Where(y => y.InstanceId == x.Id).Select(y => y.NumberOfFrames).Distinct().ToList();
|
||||||
|
|
||||||
if (keyFramesList.Count() > 0)
|
if (keyFramesList.Count() > 1)
|
||||||
{
|
{
|
||||||
x.KeyFramesList = keyFramesList;
|
x.KeyFramesList = keyFramesList;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue