From 20fc66c8cca6bd322b4ad7305cc9ea802d5fc4cb Mon Sep 17 00:00:00 2001 From: Taloth Saldono Date: Tue, 14 Oct 2014 21:16:56 +0200 Subject: [PATCH] Fixed: Using different retry method for NzbGet to actually trigger NzbGet to redownload. --- src/NzbDrone.Core/Download/Clients/Nzbget/NzbgetProxy.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Download/Clients/Nzbget/NzbgetProxy.cs b/src/NzbDrone.Core/Download/Clients/Nzbget/NzbgetProxy.cs index e58cb0a96..0bf05218d 100644 --- a/src/NzbDrone.Core/Download/Clients/Nzbget/NzbgetProxy.cs +++ b/src/NzbDrone.Core/Download/Clients/Nzbget/NzbgetProxy.cs @@ -133,7 +133,7 @@ namespace NzbDrone.Core.Download.Clients.Nzbget return; } - if (!EditQueue("HistoryReturn", 0, "", item.Id, settings)) + if (!EditQueue("HistoryRedownload", 0, "", item.Id, settings)) { _logger.Warn("Failed to return item to queue from history, {0} [{1}]", item.Name, item.Id); }