add 500 millis to the time without segments

nobody knows why
This commit is contained in:
caneleex 2021-07-24 20:29:21 +02:00
parent d3e2f2c5e4
commit c6306b66d0
1 changed files with 1 additions and 1 deletions

View File

@ -406,7 +406,7 @@ public abstract class SponsorBlockUtils {
if (!SponsorBlockSettings.isSponsorBlockEnabled || !SponsorBlockSettings.showTimeWithoutSegments || sponsorSegmentsOfCurrentVideo == null) { if (!SponsorBlockSettings.isSponsorBlockEnabled || !SponsorBlockSettings.showTimeWithoutSegments || sponsorSegmentsOfCurrentVideo == null) {
return ""; return "";
} }
long timeWithoutSegments = PlayerController.getCurrentVideoLength(); long timeWithoutSegments = PlayerController.getCurrentVideoLength() + 500; // YouTube:tm:
for (SponsorSegment segment : sponsorSegmentsOfCurrentVideo) { for (SponsorSegment segment : sponsorSegmentsOfCurrentVideo) {
timeWithoutSegments -= segment.end - segment.start; timeWithoutSegments -= segment.end - segment.start;
} }