aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Session
diff options
context:
space:
mode:
authorJPVenson <github@jpb.email>2026-05-05 17:57:27 +0000
committerJPVenson <github@jpb.email>2026-05-05 17:57:27 +0000
commitec054f6a345ab6407f39a95c3404b3d7651b2993 (patch)
tree9a8dcd563fac40f312ffe94d23bfc68940f204ec /Emby.Server.Implementations/Session
parent4178e0ebaf2ff7162f474e17e27cd5bbbfafd548 (diff)
Backport changes from #15368
Diffstat (limited to 'Emby.Server.Implementations/Session')
-rw-r--r--Emby.Server.Implementations/Session/SessionManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Session/SessionManager.cs b/Emby.Server.Implementations/Session/SessionManager.cs
index 5652d0c9b5..582e8ce8dc 100644
--- a/Emby.Server.Implementations/Session/SessionManager.cs
+++ b/Emby.Server.Implementations/Session/SessionManager.cs
@@ -2049,7 +2049,7 @@ namespace Emby.Server.Implementations.Session
{
CheckDisposed();
- var adminUserIds = _userManager.Users
+ var adminUserIds = _userManager.GetUsers()
.Where(i => i.HasPermission(PermissionKind.IsAdministrator))
.Select(i => i.Id)
.ToList();