mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-21 03:52:42 +00:00
Merge pull request #1333 from bugfixin/easypinfix
Fix incorrect hasPassword flag when easy pin set
This commit is contained in:
@@ -596,7 +596,7 @@ namespace Emby.Server.Implementations.Library
|
||||
}
|
||||
|
||||
bool hasConfiguredPassword = GetAuthenticationProvider(user).HasPassword(user).Result;
|
||||
bool hasConfiguredEasyPassword = string.IsNullOrEmpty(GetLocalPasswordHash(user));
|
||||
bool hasConfiguredEasyPassword = !string.IsNullOrEmpty(GetLocalPasswordHash(user));
|
||||
|
||||
bool hasPassword = user.Configuration.EnableLocalPassword && !string.IsNullOrEmpty(remoteEndPoint) && _networkManager.IsInLocalNetwork(remoteEndPoint) ?
|
||||
hasConfiguredEasyPassword :
|
||||
|
||||
Reference in New Issue
Block a user