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

Fixed: removed validation for Nzbget username and password when either is blank

pull/3113/head
Mark McDowall 11 years ago
parent cf3659bdef
commit 9c7eaf0043

@ -12,8 +12,8 @@ namespace NzbDrone.Core.Download.Clients.Nzbget
{
RuleFor(c => c.Host).NotEmpty();
RuleFor(c => c.Port).GreaterThan(0);
RuleFor(c => c.Username).NotEmpty();
RuleFor(c => c.Password).NotEmpty();
RuleFor(c => c.Username).NotEmpty().When(c => !String.IsNullOrWhiteSpace(c.Password));
RuleFor(c => c.Password).NotEmpty().When(c => !String.IsNullOrWhiteSpace(c.Username));
}
}

Loading…
Cancel
Save