diff --git a/src/NzbDrone.Core/Download/Clients/Nzbget/Nzbget.cs b/src/NzbDrone.Core/Download/Clients/Nzbget/Nzbget.cs index 15fe53a67..c21a4bb9f 100644 --- a/src/NzbDrone.Core/Download/Clients/Nzbget/Nzbget.cs +++ b/src/NzbDrone.Core/Download/Clients/Nzbget/Nzbget.cs @@ -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")