1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-17 21:26:22 -04:00

Fixed: Mark "BAD" Nzbget Downloads as Failed

This commit is contained in:
Qstick
2020-07-02 22:31:27 -04:00
parent e29e962bd5
commit b088a2220a

View File

@@ -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,