mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-10 23:42:36 -07:00
Fixed #947
This commit is contained in:
parent
2976e87cc5
commit
80a9e54c4b
1 changed files with 1 additions and 1 deletions
|
@ -420,7 +420,7 @@ namespace Ombi.UI.Modules
|
||||||
FeaturesFormattedString = newUser ? "Processing..." : features.ToString(),
|
FeaturesFormattedString = newUser ? "Processing..." : features.ToString(),
|
||||||
Username = plexInfo.Title,
|
Username = plexInfo.Title,
|
||||||
Type = UserType.PlexUser,
|
Type = UserType.PlexUser,
|
||||||
EmailAddress = plexInfo.Email,
|
EmailAddress = string.IsNullOrEmpty(plexInfo.Email) ? dbUser.EmailAddress : plexInfo.Email,
|
||||||
Alias = dbUser?.UserAlias ?? string.Empty,
|
Alias = dbUser?.UserAlias ?? string.Empty,
|
||||||
LastLoggedIn = lastLoggedIn,
|
LastLoggedIn = lastLoggedIn,
|
||||||
PlexInfo = new UserManagementPlexInformation
|
PlexInfo = new UserManagementPlexInformation
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue