@ -56,11 +56,11 @@ namespace NzbDrone.Core.Download
private IEnumerable < IDownloadClient > FilterBlockedClients ( IEnumerable < IDownloadClient > clients )
{
var blocked Indexer s = _downloadClientStatusService . GetBlockedProviders ( ) . ToDictionary ( v = > v . ProviderId , v = > v ) ;
var blocked Client s = _downloadClientStatusService . GetBlockedProviders ( ) . ToDictionary ( v = > v . ProviderId , v = > v ) ;
foreach ( var client in clients )
{
if ( blocked Indexer s. TryGetValue ( client . Definition . Id , out var downloadClientStatus ) )
if ( blocked Client s. TryGetValue ( client . Definition . Id , out var downloadClientStatus ) )
{
_logger . Debug ( "Temporarily ignoring download client {0} till {1} due to recent failures." , client . Definition . Name , downloadClientStatus . DisabledTill . Value . ToLocalTime ( ) ) ;
continue ;