Fix skipping two segments at the same time for auto skip on music videos

This commit is contained in:
Ajay
2022-07-19 23:27:32 -04:00
parent d0e35032a5
commit 0f9122aa1c

View File

@@ -1212,7 +1212,7 @@ function getNextSkipIndex(currentTime: number, includeIntersectingSegments: bool
const autoSkipSorter = (segment: ScheduledTime) => {
const skipOption = utils.getCategorySelection(segment.category)?.option;
if (skipOption === CategorySkipOption.AutoSkip
if ((skipOption === CategorySkipOption.AutoSkip || shouldAutoSkip(segment))
&& segment.actionType === ActionType.Skip) {
return 0;
} else if (skipOption !== CategorySkipOption.ShowOverlay) {