mirror of https://github.com/Radarr/Radarr
Fixed: removed validation for Nzbget username and password when either is blank
This commit is contained in:
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…
Reference in New Issue