From 7892250dc20c088d74c2e6724230cfe40b5258a7 Mon Sep 17 00:00:00 2001 From: TwistedUmbrellaX Date: Tue, 26 Mar 2024 16:36:53 -0400 Subject: [PATCH] Fix double negatives and woording --- ConfusedPolarBear.Plugin.IntroSkipper/AutoSkip.cs | 2 +- .../Configuration/configPage.html | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ConfusedPolarBear.Plugin.IntroSkipper/AutoSkip.cs b/ConfusedPolarBear.Plugin.IntroSkipper/AutoSkip.cs index d77b922..305549d 100644 --- a/ConfusedPolarBear.Plugin.IntroSkipper/AutoSkip.cs +++ b/ConfusedPolarBear.Plugin.IntroSkipper/AutoSkip.cs @@ -109,7 +109,7 @@ public class AutoSkip : IServerEntryPoint } // 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/Configuration/configPage.html b/ConfusedPolarBear.Plugin.IntroSkipper/Configuration/configPage.html index a95311d..e44e1e1 100644 --- a/ConfusedPolarBear.Plugin.IntroSkipper/Configuration/configPage.html +++ b/ConfusedPolarBear.Plugin.IntroSkipper/Configuration/configPage.html @@ -310,12 +310,13 @@
- If checked, auto skip will ignore introduction in the first episode of a season.
+ If checked, auto skip will play the introduction of the first episode in a season.
+