From 508ab9897f1a60453b8c97d1e126d094fcbfef3b Mon Sep 17 00:00:00 2001 From: Kilian von Pflugk Date: Wed, 12 Jun 2024 16:29:07 +0200 Subject: [PATCH] fix for #197 --- ConfusedPolarBear.Plugin.IntroSkipper/AutoSkip.cs | 2 +- ConfusedPolarBear.Plugin.IntroSkipper/AutoSkipCredits.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ConfusedPolarBear.Plugin.IntroSkipper/AutoSkip.cs b/ConfusedPolarBear.Plugin.IntroSkipper/AutoSkip.cs index fc7dff6..ae9839d 100644 --- a/ConfusedPolarBear.Plugin.IntroSkipper/AutoSkip.cs +++ b/ConfusedPolarBear.Plugin.IntroSkipper/AutoSkip.cs @@ -93,7 +93,7 @@ public class AutoSkip : IHostedService, IDisposable } // If this is the first episode in the season, and SkipFirstEpisode is false, pretend that we've already sent the seek command for this playback session. - if (!Plugin.Instance!.Configuration.SkipFirstEpisode && episodeNumber == 1) + if (Plugin.Instance!.Configuration.SkipFirstEpisode && episodeNumber == 1) { newState = true; } diff --git a/ConfusedPolarBear.Plugin.IntroSkipper/AutoSkipCredits.cs b/ConfusedPolarBear.Plugin.IntroSkipper/AutoSkipCredits.cs index 07155e3..878e063 100644 --- a/ConfusedPolarBear.Plugin.IntroSkipper/AutoSkipCredits.cs +++ b/ConfusedPolarBear.Plugin.IntroSkipper/AutoSkipCredits.cs @@ -93,7 +93,7 @@ public class AutoSkipCredits : IHostedService, IDisposable } // If this is the first episode in the season, and SkipFirstEpisode is false, pretend that we've already sent the seek command for this playback session. - if (!Plugin.Instance!.Configuration.SkipFirstEpisode && episodeNumber == 1) + if (Plugin.Instance!.Configuration.SkipFirstEpisode && episodeNumber == 1) { newState = true; }