mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-19 21:44:30 -04:00
Fixed an issue with propers being skipped for old and lower quality episodes
This commit is contained in:
@@ -36,7 +36,10 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
|
||||
return false;
|
||||
}
|
||||
|
||||
if (subject.ParsedEpisodeInfo.Quality.Proper && file.DateAdded < DateTime.Today.AddDays(-7))
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user