This commit is contained in:
2022-12-08 13:52:06 +08:00
parent d5645f2f59
commit 748f8e34fd
3 changed files with 4 additions and 4 deletions
@@ -61,7 +61,7 @@ namespace IRaCIS.Core.Application.Services
for (int i = 1; i <= u.NumberOfFrames; i++)
{
pathList.Add(u.Path+ "?frame=" + i);
pathList.Add(u.Path+ "?frame=" + (i - 1));
}
return pathList;
}
@@ -247,7 +247,7 @@ namespace IRaCIS.Core.Application.Services
for (int i = 1; i <= u.NumberOfFrames; i++)
{
pathList.Add(u.Path + "?frame=" + i);
pathList.Add(u.Path + "?frame=" + (i - 1));
}
return pathList;
}
@@ -380,7 +380,7 @@ namespace IRaCIS.Core.Application.Services
for (int i = 1; i <= u.NumberOfFrames; i++)
{
pathList.Add(u.Path + "?frame=" + i);
pathList.Add(u.Path + "?frame=" + (i - 1));
}
return pathList;
}