1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-03-13 07:23:14 +00:00

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

This commit is contained in:
Mark McDowall 2019-07-22 21:15:27 -07:00 committed by Qstick
parent 3e10c994df
commit 5111e44984

View file

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