mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-04-23 13:57:06 -04:00
Can't login with a username and a blank password
This commit is contained in:
parent
a6fdcb7493
commit
7acd6a4d3c
1 changed files with 1 additions and 3 deletions
|
@ -25,9 +25,7 @@ namespace Sonarr.Http.Authentication
|
|||
private Response Login(LoginResource resource)
|
||||
{
|
||||
Ensure.That(resource.Username, () => resource.Username).IsNotNullOrWhiteSpace();
|
||||
|
||||
// TODO: A null or empty password should not be allowed, uncomment in v3
|
||||
//Ensure.That(resource.Password, () => resource.Password).IsNotNullOrWhiteSpace();
|
||||
Ensure.That(resource.Password, () => resource.Password).IsNotNullOrWhiteSpace();
|
||||
|
||||
var user = _userService.FindUser(resource.Username, resource.Password);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue