Fixed: Specials will be ignored if no specials existed previously

This commit is contained in:
Mark McDowall
2014-05-25 18:47:54 -07:00
parent be2690e2c8
commit 1b10002ed8
3 changed files with 88 additions and 0 deletions
@@ -101,6 +101,12 @@ namespace NzbDrone.Core.Tv
//Todo: Should this should use the previous season's monitored state?
if (existingSeason == null)
{
if (season.SeasonNumber == 0)
{
season.Monitored = false;
continue;
}
_logger.Debug("New season ({0}) for series: [{1}] {2}, setting monitored to true", season.SeasonNumber, series.TvdbId, series.Title);
season.Monitored = true;
}