Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/076c293942ada75be1cfe0351816848bc554e311 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Monitoring pilot episode will not monitor first season

Closes 
pull/4606/head
Mark McDowall 4 years ago
parent 94417402d8
commit 076c293942

@ -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))
{

Loading…
Cancel
Save