mirror of https://github.com/Sonarr/Sonarr
New: Treat Manual Bad in history as failed
This commit is contained in:
parent
d016079f6b
commit
ab478fd64b
|
@ -426,6 +426,31 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.NzbgetTests
|
|||
Subject.GetItems().First().OutputPath.Should().Be(_completed.DestDir);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void should_report_deletestatus_manual_with_markstatus_bad_as_failed()
|
||||
{
|
||||
_completed.DeleteStatus = "MANUAL";
|
||||
_completed.MarkStatus = "BAD";
|
||||
|
||||
GivenQueue(null);
|
||||
GivenHistory(_completed);
|
||||
|
||||
var result = Subject.GetItems().Single();
|
||||
|
||||
result.Status.Should().Be(DownloadItemStatus.Failed);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void should_ignore_deletestatus_manual_without_markstatus()
|
||||
{
|
||||
_completed.DeleteStatus = "MANUAL";
|
||||
|
||||
GivenQueue(null);
|
||||
GivenHistory(_completed);
|
||||
|
||||
Subject.GetItems().Should().BeEmpty();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void should_use_final_dir_when_set_instead_of_dest_dir()
|
||||
{
|
||||
|
|
|
@ -132,6 +132,13 @@ namespace NzbDrone.Core.Download.Clients.Nzbget
|
|||
|
||||
if (item.DeleteStatus == "MANUAL")
|
||||
{
|
||||
if (item.MarkStatus == "BAD")
|
||||
{
|
||||
historyItem.Status = DownloadItemStatus.Failed;
|
||||
|
||||
historyItems.Add(historyItem);
|
||||
}
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue