mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2025-12-08 12:37:05 +03:00
Fix smallest segment cache
This commit is contained in:
@@ -955,8 +955,7 @@ class PreviewBar {
|
||||
}
|
||||
}
|
||||
|
||||
if ((direction === 1 && timeInSeconds > seg.segment[1])
|
||||
|| (direction === -1 && timeInSeconds < seg.segment[0])) {
|
||||
if (direction === 1 && seg.segment[0] > timeInSeconds) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user