mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-28 04:51:45 +02:00
Fixed: SAB retry not finding new ID in history
This commit is contained in:
@@ -231,7 +231,7 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
|
|||||||
|
|
||||||
var history = GetHistory().Where(v => v.Category == currentHistoryItem.Category &&
|
var history = GetHistory().Where(v => v.Category == currentHistoryItem.Category &&
|
||||||
v.Title == currentHistoryItem.Title &&
|
v.Title == currentHistoryItem.Title &&
|
||||||
otherItemsWithSameTitle.Select(h => h.DownloadClientId)
|
!otherItemsWithSameTitle.Select(h => h.DownloadClientId)
|
||||||
.Contains(v.DownloadClientId)).ToList();
|
.Contains(v.DownloadClientId)).ToList();
|
||||||
|
|
||||||
if (queue.Count == 1)
|
if (queue.Count == 1)
|
||||||
|
Reference in New Issue
Block a user