mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-20 07:34:30 +00:00
Fixed: NzbGet DUPE/COPY status should be considered failure.
fixes #919 closes #693 closes #505
This commit is contained in:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user