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:
parent
3e10c994df
commit
5111e44984
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue