Fixed: Don't ignore Delete:Copy items in NZBGet

This commit is contained in:
Mark McDowall 2019-07-22 21:15:27 -07:00
parent 0e721917e7
commit 54addbdd28
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}