1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-21 22:05:38 -04:00

Renamed IndexerStatus.IndexerId to ProviderId.

This commit is contained in:
Taloth Saldono
2017-05-12 19:45:22 +02:00
parent 7b0e40d5d0
commit 14144bd4d9
13 changed files with 73 additions and 15 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ namespace NzbDrone.Core.Indexers
private IEnumerable<IIndexer> FilterBlockedIndexers(IEnumerable<IIndexer> indexers)
{
var blockedIndexers = _indexerStatusService.GetBlockedIndexers().ToDictionary(v => v.IndexerId, v => v);
var blockedIndexers = _indexerStatusService.GetBlockedIndexers().ToDictionary(v => v.ProviderId, v => v);
foreach (var indexer in indexers)
{