diff options
| author | Patrick Barron <barronpm@gmail.com> | 2020-06-07 20:16:51 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2020-06-07 20:16:51 -0400 |
| commit | 824cd87b75154176d6fd35f74f907f8f6ef264be (patch) | |
| tree | b095498fbc38d9c9ec54e578cd27d40d53d9fff8 /Jellyfin.Server.Implementations | |
| parent | 75af0a4e57ac29fb8143717055c8df1fedeba6ec (diff) | |
Add missing property
Diffstat (limited to 'Jellyfin.Server.Implementations')
| -rw-r--r-- | Jellyfin.Server.Implementations/Users/UserManager.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Jellyfin.Server.Implementations/Users/UserManager.cs b/Jellyfin.Server.Implementations/Users/UserManager.cs index d3cd29909..5ed3758fb 100644 --- a/Jellyfin.Server.Implementations/Users/UserManager.cs +++ b/Jellyfin.Server.Implementations/Users/UserManager.cs @@ -277,6 +277,7 @@ namespace Jellyfin.Server.Implementations.Users Id = user.Id, ServerId = _appHost.SystemId, HasPassword = GetAuthenticationProvider(user).HasPassword(user), + HasConfiguredEasyPassword = !string.IsNullOrEmpty(user.EasyPassword), EnableAutoLogin = user.EnableAutoLogin, LastLoginDate = user.LastLoginDate, LastActivityDate = user.LastActivityDate, |
