From 4e98a447cbb30c83ad27f206b07d06093aac9b0f Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Mon, 6 Oct 2014 08:49:14 -0700 Subject: [PATCH] Fixed: SAB retry not finding new ID in history --- src/NzbDrone.Core/Download/Clients/Sabnzbd/Sabnzbd.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Download/Clients/Sabnzbd/Sabnzbd.cs b/src/NzbDrone.Core/Download/Clients/Sabnzbd/Sabnzbd.cs index b645b8a5b..d35204d0e 100644 --- a/src/NzbDrone.Core/Download/Clients/Sabnzbd/Sabnzbd.cs +++ b/src/NzbDrone.Core/Download/Clients/Sabnzbd/Sabnzbd.cs @@ -231,7 +231,7 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd 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)