fix negative index
This commit is contained in:
parent
e58e74b5d4
commit
4669a4fc9b
@ -113,7 +113,7 @@ public class ChapterAnalyzer : IMediaFileAnalyzer
|
|||||||
});
|
});
|
||||||
|
|
||||||
// Check all chapters in reverse order, skipping the virtual chapter
|
// Check all chapters in reverse order, skipping the virtual chapter
|
||||||
for (int i = chapters.Count - 2; i >= 0; i--)
|
for (int i = chapters.Count - 2; i > 0; i--)
|
||||||
{
|
{
|
||||||
var current = chapters[i];
|
var current = chapters[i];
|
||||||
var previous = chapters[i - 1];
|
var previous = chapters[i - 1];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user