diff --git a/src/NzbDrone.Core/Download/ProcessDownloadDecisions.cs b/src/NzbDrone.Core/Download/ProcessDownloadDecisions.cs index 83010cad7..dbdd4216b 100644 --- a/src/NzbDrone.Core/Download/ProcessDownloadDecisions.cs +++ b/src/NzbDrone.Core/Download/ProcessDownloadDecisions.cs @@ -131,6 +131,11 @@ public async Task ProcessDecision(DownloadDecision deci return ProcessedDecisionResult.Skipped; } + if (!IsQualifiedReport(decision)) + { + return ProcessedDecisionResult.Rejected; + } + if (decision.TemporarilyRejected) { _pendingReleaseService.Add(decision, PendingReleaseReason.Delay); @@ -150,8 +155,13 @@ public async Task ProcessDecision(DownloadDecision deci internal List GetQualifiedReports(IEnumerable decisions) { - //Process both approved and temporarily rejected - return decisions.Where(c => (c.Approved || c.TemporarilyRejected) && c.RemoteBook.Books.Any()).ToList(); + return decisions.Where(IsQualifiedReport).ToList(); + } + + internal bool IsQualifiedReport(DownloadDecision decision) + { + // Process both approved and temporarily rejected + return (decision.Approved || decision.TemporarilyRejected) && decision.RemoteBook.Books.Any(); } private bool IsBookProcessed(List decisions, DownloadDecision report)