aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server.Implementations/Security/AuthorizationContext.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Server.Implementations/Security/AuthorizationContext.cs')
-rw-r--r--Jellyfin.Server.Implementations/Security/AuthorizationContext.cs11
1 files changed, 2 insertions, 9 deletions
diff --git a/Jellyfin.Server.Implementations/Security/AuthorizationContext.cs b/Jellyfin.Server.Implementations/Security/AuthorizationContext.cs
index 08970f84d..8a5d513ef 100644
--- a/Jellyfin.Server.Implementations/Security/AuthorizationContext.cs
+++ b/Jellyfin.Server.Implementations/Security/AuthorizationContext.cs
@@ -171,15 +171,7 @@ namespace Jellyfin.Server.Implementations.Security
updateToken = true;
}
- if (!device.UserId.Equals(Guid.Empty))
- {
- authInfo.User = _userManager.GetUserById(device.UserId);
- authInfo.IsApiKey = false;
- }
- else
- {
- authInfo.IsApiKey = true;
- }
+ authInfo.User = _userManager.GetUserById(device.UserId);
if (updateToken)
{
@@ -198,6 +190,7 @@ namespace Jellyfin.Server.Implementations.Security
authInfo.DeviceId = string.Empty;
authInfo.Device = string.Empty;
authInfo.Version = string.Empty;
+ authInfo.IsApiKey = true;
}
}