fix negative index

This commit is contained in:
rlauuzo 2024-05-01 18:16:07 +02:00 committed by TwistedUmbrellaX
parent 90ec690e27
commit 2b153267fb

View File

@ -113,7 +113,7 @@ public class ChapterAnalyzer : IMediaFileAnalyzer
});
// 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 next = chapters[i + 1];