This commit is contained in:
Kilian von Pflugk 2024-06-12 16:29:07 +02:00
parent 0c305d1bd7
commit 508ab9897f
2 changed files with 2 additions and 2 deletions

View File

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

View File

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