1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -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)