mirror of
https://github.com/Radarr/Radarr
synced 2025-12-27 02:34:17 +01:00
Fixed: Mark "BAD" Nzbget Downloads as Failed
This commit is contained in:
parent
e29e962bd5
commit
b088a2220a
1 changed files with 1 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ public class Nzbget : UsenetClientBase<NzbgetSettings>
|
|||
{
|
||||
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…
Reference in a new issue