1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Fixed: SAB retry not finding new ID in history

This commit is contained in:
Mark McDowall 2014-10-06 08:49:14 -07:00
parent a433aac034
commit 4e98a447cb

View File

@ -231,7 +231,7 @@ public override String RetryDownload(String id)
var history = GetHistory().Where(v => v.Category == currentHistoryItem.Category &&
v.Title == currentHistoryItem.Title &&
otherItemsWithSameTitle.Select(h => h.DownloadClientId)
!otherItemsWithSameTitle.Select(h => h.DownloadClientId)
.Contains(v.DownloadClientId)).ToList();
if (queue.Count == 1)