Fixed a bunch of specs that handled propers and cutoffs

This commit is contained in:
Mark McDowall 2013-09-10 22:45:08 -07:00
commit fc43db164b
8 changed files with 235 additions and 64 deletions

View file

@ -35,15 +35,6 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
{
return false;
}
if (searchCriteria == null &&
subject.ParsedEpisodeInfo.Quality.Quality == file.Quality.Quality &&
subject.ParsedEpisodeInfo.Quality.Proper &&
file.DateAdded < DateTime.Today.AddDays(-7))
{
_logger.Trace("Proper for old file, skipping: {0}", subject);
return false;
}
}
return true;