Fixed: Wrong user name won't result in error message being generated

This commit is contained in:
Mark McDowall 2015-02-04 07:15:37 -08:00
parent 33bb64984a
commit 341daf69d1
1 changed files with 5 additions and 0 deletions

View File

@ -75,6 +75,11 @@ namespace NzbDrone.Core.Authentication
{ {
var user = _repo.FindUser(username.ToLowerInvariant()); var user = _repo.FindUser(username.ToLowerInvariant());
if (user == null)
{
return null;
}
if (user.Password == password.SHA256Hash()) if (user.Password == password.SHA256Hash())
{ {
return user; return user;