From 54addbdd2862d88b05b591630ac884b0035359db Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Mon, 22 Jul 2019 21:15:27 -0700 Subject: [PATCH] Fixed: Don't ignore Delete:Copy items in NZBGet --- src/NzbDrone.Core/Download/Clients/Nzbget/Nzbget.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Download/Clients/Nzbget/Nzbget.cs b/src/NzbDrone.Core/Download/Clients/Nzbget/Nzbget.cs index 3e1510bcc..92a8a5dad 100644 --- a/src/NzbDrone.Core/Download/Clients/Nzbget/Nzbget.cs +++ b/src/NzbDrone.Core/Download/Clients/Nzbget/Nzbget.cs @@ -130,7 +130,7 @@ namespace NzbDrone.Core.Download.Clients.Nzbget historyItem.CanMoveFiles = true; historyItem.CanBeRemoved = true; - if (item.DeleteStatus == "MANUAL" || item.DeleteStatus == "COPY") + if (item.DeleteStatus == "MANUAL") { continue; }