1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

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

View File

@ -75,6 +75,11 @@ public User FindUser(string username, string password)
{
var user = _repo.FindUser(username.ToLowerInvariant());
if (user == null)
{
return null;
}
if (user.Password == password.SHA256Hash())
{
return user;