From af2f61b06cf274d4f25e447800a9138bade77406 Mon Sep 17 00:00:00 2001 From: rlauuzo <46294892+rlauuzo@users.noreply.github.com> Date: Thu, 3 Oct 2024 01:19:59 +0200 Subject: [PATCH] Reduce autoskip delay at start of episode (#316) --- ConfusedPolarBear.Plugin.IntroSkipper/Services/AutoSkip.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ConfusedPolarBear.Plugin.IntroSkipper/Services/AutoSkip.cs b/ConfusedPolarBear.Plugin.IntroSkipper/Services/AutoSkip.cs index ee75ffb..13c7dc8 100644 --- a/ConfusedPolarBear.Plugin.IntroSkipper/Services/AutoSkip.cs +++ b/ConfusedPolarBear.Plugin.IntroSkipper/Services/AutoSkip.cs @@ -128,7 +128,7 @@ public class AutoSkip( } // Seek is unreliable if called at the very start of an episode. - var adjustedStart = Math.Max(5, intro.Start + Plugin.Instance.Configuration.SecondsOfIntroStartToPlay); + var adjustedStart = Math.Max(1, intro.Start + Plugin.Instance.Configuration.SecondsOfIntroStartToPlay); var adjustedEnd = intro.End - Plugin.Instance.Configuration.RemainingSecondsOfIntro; _logger.LogTrace(