Added option to disable blacklisting, both the queue check and the spec

This commit is contained in:
Mark McDowall 2013-10-28 17:41:35 -07:00
commit 7c6fad155a
7 changed files with 84 additions and 22 deletions

View file

@ -39,6 +39,12 @@ namespace NzbDrone.Core.Download
private void CheckForFailedDownloads()
{
if (!_configService.EnableFailedDownloadHandling)
{
_logger.Trace("Failed Download Handling is not enabled");
return;
}
var grabbedHistory = _historyService.Grabbed();
var failedHistory = _historyService.Failed();