Merge pull request #1372 from DrPandemic/fix-pin

Fix broken pin in 10.3.z
pull/1383/head
Joshua M. Boniface 5 years ago committed by GitHub
commit 0a9a6b949c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save