Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/7f201c6677ec664fb5380c3356561dc6559d8520 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Mark "BAD" Nzbget Downloads as Failed

Fixes 
pull/4559/head
Qstick 5 years ago
parent a77d43bd43
commit 7f201c6677

@ -21,7 +21,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…
Cancel
Save