Merge pull request #1372 from DrPandemic/fix-pin

Fix broken pin in 10.3.z
This commit is contained in:
Joshua M. Boniface 2019-05-14 21:54:28 -04:00 committed by GitHub
commit 0a9a6b949c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -550,7 +550,7 @@ namespace Emby.Server.Implementations.Library
{
return string.IsNullOrEmpty(user.EasyPassword)
? null
: user.EasyPassword;
: (new PasswordHash(user.EasyPassword)).Hash;
}
/// <summary>