mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-04-23 13:57:06 -04:00
Fixed: Mark "BAD" Nzbget Downloads as Failed
This commit is contained in:
parent
8eeab25468
commit
3033537236
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ namespace NzbDrone.Core.Download.Clients.Nzbget
|
|||
{
|
||||
private readonly INzbgetProxy _proxy;
|
||||
private readonly string[] _successStatus = { "SUCCESS", "NONE" };
|
||||
private readonly string[] _deleteFailedStatus = { "HEALTH", "DUPE", "SCAN", "COPY" };
|
||||
private readonly string[] _deleteFailedStatus = { "HEALTH", "DUPE", "SCAN", "COPY", "BAD" };
|
||||
|
||||
public Nzbget(INzbgetProxy proxy,
|
||||
IHttpClient httpClient,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue