Monitored instead of ignored for episodes and seasons

This commit is contained in:
Mark McDowall
2013-07-08 18:22:02 -07:00
parent 5b226a4a5e
commit 41baecc2ee
19 changed files with 93 additions and 58 deletions

View File

@@ -17,7 +17,7 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
{
get
{
return "Series is not monitored or Episode is ignored";
return "Series or Episode is not monitored";
}
}
@@ -30,12 +30,12 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
}
//return monitored if any of the episodes are monitored
if (subject.Episodes.Any(episode => !episode.Ignored))
if (subject.Episodes.Any(episode => episode.Monitored))
{
return true;
}
_logger.Debug("All episodes are ignored. skipping.");
_logger.Debug("No episodes are monitored. skipping.");
return false;
}
}