Fixed: Regression preventing new downloads from bypassing the Download Client Back-off logic

This commit is contained in:
Qstick
2017-11-25 22:14:51 -05:00
parent 2afa6c02de
commit eed81144f6
3 changed files with 15 additions and 18 deletions
@@ -55,11 +55,6 @@ namespace NzbDrone.Core.Download
throw new DownloadClientUnavailableException($"{remoteAlbum.Release.DownloadProtocol} Download client isn't configured yet");
}
if (_downloadClientStatusService.IsDisabled(downloadClient.Definition.Id))
{
throw new DownloadClientUnavailableException($"{downloadClient.Name} is disabled due to recent failues");
}
// Limit grabs to 2 per second.
if (remoteAlbum.Release.DownloadUrl.IsNotNullOrWhiteSpace() && !remoteAlbum.Release.DownloadUrl.StartsWith("magnet:"))
{