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; }