From cdca754b0f1c4a14c15b4af04b445db5a2fe5c0e Mon Sep 17 00:00:00 2001 From: Taloth Saldono Date: Mon, 9 Jun 2014 12:55:45 +0200 Subject: [PATCH] Fixed issue with Nzbget client detecting completed downloads when no intermediate directory was used. --- src/NzbDrone.Core/Download/Clients/Nzbget/Nzbget.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/NzbDrone.Core/Download/Clients/Nzbget/Nzbget.cs b/src/NzbDrone.Core/Download/Clients/Nzbget/Nzbget.cs index 11b84cf4e..6ae144000 100644 --- a/src/NzbDrone.Core/Download/Clients/Nzbget/Nzbget.cs +++ b/src/NzbDrone.Core/Download/Clients/Nzbget/Nzbget.cs @@ -180,10 +180,6 @@ namespace NzbDrone.Core.Download.Clients.Nzbget { historyItem.Status = DownloadItemStatus.Failed; } - else if (item.MoveStatus != "SUCCESS") - { - historyItem.Status = DownloadItemStatus.Queued; - } historyItems.Add(historyItem); }