aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShadowghost <Ghost_of_Stone@web.de>2026-08-10 22:46:31 +0200
committerShadowghost <Ghost_of_Stone@web.de>2026-08-10 23:04:01 +0200
commitf82101332d19a64739e35ba7cf3d54b2a537c032 (patch)
tree60d02be3703c3704f4bce59674fa6d4768774333
parent7b6ae06f3bc3f630828a77c0f2b0c2e1d6bd85cd (diff)
Fix master build
-rw-r--r--Jellyfin.Server.Implementations/Item/LinkedChildrenService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server.Implementations/Item/LinkedChildrenService.cs b/Jellyfin.Server.Implementations/Item/LinkedChildrenService.cs
index d46f7b3c4c..40300b7fa2 100644
--- a/Jellyfin.Server.Implementations/Item/LinkedChildrenService.cs
+++ b/Jellyfin.Server.Implementations/Item/LinkedChildrenService.cs
@@ -72,7 +72,7 @@ public class LinkedChildrenService : ILinkedChildrenService
return dbContext.LinkedChildren
.Where(lc => lc.ChildType == DbLinkedChildType.LocalAlternateVersion
|| lc.ChildType == DbLinkedChildType.LinkedAlternateVersion)
- .WhereOneOrMany(itemIds as IList<Guid> ?? itemIds.ToList(), lc => lc.ParentId)
+ .WhereOneOrMany(itemIds, lc => lc.ParentId)
.Select(lc => lc.ParentId)
.Distinct()
.ToHashSet();