mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 21:13:28 -07:00
Added option to disable blacklisting, both the queue check and the spec
This commit is contained in:
parent
4578adf1c0
commit
7c6fad155a
7 changed files with 84 additions and 22 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue