1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-21 22:05:43 -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
@@ -57,7 +57,7 @@ namespace NzbDrone.Core.Indexers
private IndexerStatus GetIndexerStatus(int indexerId)
{
return _indexerStatusRepository.FindByIndexerId(indexerId) ?? new IndexerStatus { IndexerId = indexerId };
return _indexerStatusRepository.FindByIndexerId(indexerId) ?? new IndexerStatus { ProviderId = indexerId };
}
private TimeSpan CalculateBackOffPeriod(IndexerStatus status)