Fixed: NzbGet DUPE/COPY status should be considered failure.

fixes #919
closes #693
closes #505
pull/4/head
Taloth Saldono 8 years ago
parent 0865306064
commit 072ca459bd

@ -173,7 +173,14 @@ namespace NzbDrone.Core.Download.Clients.Nzbget
if (!successStatus.Contains(item.DeleteStatus) && item.DeleteStatus.IsNotNullOrWhiteSpace())
{
historyItem.Status = DownloadItemStatus.Warning;
if (item.DeleteStatus == "COPY" || item.DeleteStatus == "DUPE")
{
historyItem.Status = DownloadItemStatus.Failed;
}
else
{
historyItem.Status = DownloadItemStatus.Warning;
}
}
if (item.DeleteStatus == "HEALTH")

Loading…
Cancel
Save