Fix double negatives and woording

This commit is contained in:
TwistedUmbrellaX 2024-03-26 16:36:53 -04:00
parent 5e8681c44e
commit 7892250dc2
2 changed files with 4 additions and 3 deletions

View File

@ -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 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; newState = true;
} }

View File

@ -310,12 +310,13 @@
<div id="divSkipFirstEpisode" class="checkboxContainer checkboxContainer-withDescription"> <div id="divSkipFirstEpisode" class="checkboxContainer checkboxContainer-withDescription">
<label class="emby-checkbox-label"> <label class="emby-checkbox-label">
<input id="SkipFirstEpisode" type="checkbox" is="emby-checkbox" /> <input id="SkipFirstEpisode" type="checkbox" is="emby-checkbox" />
<span>Ignore intro in the first episode of a season</span> <span>Play intro for first episode of a season</span>
</label> </label>
<div class="fieldDescription"> <div class="fieldDescription">
If checked, auto skip will ignore introduction in the first episode of a season.<br /> If checked, auto skip will play the introduction of the first episode in a season.<br />
</div> </div>
<br />
</div> </div>
<div class="checkboxContainer checkboxContainer-withDescription"> <div class="checkboxContainer checkboxContainer-withDescription">