mirror of
https://github.com/Readarr/Readarr
synced 2026-01-03 22:28:23 +01: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 @@ private IEnumerable<DownloadClientItem> GetHistory()
|
|||
historyItem.CanMoveFiles = true;
|
||||
historyItem.CanBeRemoved = true;
|
||||
|
||||
if (item.DeleteStatus == "MANUAL" || item.DeleteStatus == "COPY")
|
||||
if (item.DeleteStatus == "MANUAL")
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue