mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-03-05 13:20:20 -05:00
Fixed: Monitoring pilot episode will not monitor first season
Closes #4597
This commit is contained in:
@@ -128,6 +128,11 @@ namespace NzbDrone.Core.Tv
|
||||
{
|
||||
season.Monitored = true;
|
||||
}
|
||||
// Don't monitor season 1 if only the pilot episode is monitored
|
||||
else if (seasonNumber == firstSeason && monitoringOptions.Monitor == MonitorTypes.Pilot)
|
||||
{
|
||||
season.Monitored = false;
|
||||
}
|
||||
// Monitor the season if it has any monitor episodes
|
||||
else if (monitoredSeasons.Contains(seasonNumber))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user