From 556be1fa1226ba7caf32dad40ba9b776ec0310a4 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 57e2d55e3..617574ef8 100644 --- a/src/NzbDrone.Core/Download/Clients/Nzbget/Nzbget.cs +++ b/src/NzbDrone.Core/Download/Clients/Nzbget/Nzbget.cs @@ -131,7 +131,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; }