Skip to content

Commit

Permalink
Fixed: Mark "BAD" Nzbget Downloads as Failed
Browse files Browse the repository at this point in the history
  • Loading branch information
Qstick committed Jul 3, 2020
1 parent e29e962 commit b088a22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NzbDrone.Core/Download/Clients/Nzbget/Nzbget.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit b088a22

Please sign in to comment.