mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-01-04 06:38:28 +02:00
Only get DownloadClientId when its been added to history
This commit is contained in:
parent
16356b6319
commit
332136bc6f
@ -124,7 +124,7 @@ private void CheckHistory(List<History.History> grabbedHistory, List<History.His
|
||||
|
||||
private List<History.History> GetHistoryItems(List<History.History> grabbedHistory, string downloadClientId)
|
||||
{
|
||||
return grabbedHistory.Where(h => h.Data.ContainsKey(DOWNLOAD_CLIENT) &&
|
||||
return grabbedHistory.Where(h => h.Data.ContainsKey(DOWNLOAD_CLIENT_ID) &&
|
||||
h.Data[DOWNLOAD_CLIENT_ID].Equals(downloadClientId))
|
||||
.ToList();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user