aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Helpers/StreamingHelpers.cs
diff options
context:
space:
mode:
authorMark Cilia Vincenti <markciliavincenti@gmail.com>2024-02-03 08:45:14 +0100
committerMark Cilia Vincenti <markciliavincenti@gmail.com>2024-02-03 08:45:14 +0100
commitf26fc7dfb263765837dab7a0e4f661ff6bcd6597 (patch)
tree54013c35dd2a1e8e5756b071681f37b31722ff52 /Jellyfin.Api/Helpers/StreamingHelpers.cs
parente47144e7c777751b03caf7cbb64cf93f92725725 (diff)
parente4f715bbee26985ae7666e4c80282ac52e7fce73 (diff)
Merge changes
Diffstat (limited to 'Jellyfin.Api/Helpers/StreamingHelpers.cs')
-rw-r--r--Jellyfin.Api/Helpers/StreamingHelpers.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Helpers/StreamingHelpers.cs b/Jellyfin.Api/Helpers/StreamingHelpers.cs
index 78943f7b5..7a3842a9f 100644
--- a/Jellyfin.Api/Helpers/StreamingHelpers.cs
+++ b/Jellyfin.Api/Helpers/StreamingHelpers.cs
@@ -82,7 +82,7 @@ public static class StreamingHelpers
};
var userId = httpContext.User.GetUserId();
- if (!userId.Equals(default))
+ if (!userId.IsEmpty())
{
state.User = userManager.GetUserById(userId);
}