Failed DeleteStatus now only a Warning, also added null check to handle older NzbGet version.

pull/4/head
Taloth Saldono 9 years ago
parent 971e159fa4
commit db4746bef7

@ -213,6 +213,19 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.NzbgetTests
result.Status.Should().Be(DownloadItemStatus.Failed);
}
[Test]
public void should_report_deletestatus_dupe_as_warning()
{
_completed.DeleteStatus = "DUPE";
GivenQueue(null);
GivenHistory(_completed);
var result = Subject.GetItems().Single();
result.Status.Should().Be(DownloadItemStatus.Warning);
}
[Test]
public void should_report_unpackstatus_freespace_as_warning()
{

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

Loading…
Cancel
Save