aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2026-08-10 17:29:12 -0400
committerGitHub <noreply@github.com>2026-08-10 17:29:12 -0400
commit34cc90f5e285a0b896e07d0bc195e4cff768cb56 (patch)
tree2994f307143e7d091d60d6ab4d730e62c934a6cb
parent35e86416af32adaa220a241f756544cd316bd866 (diff)
parent26fbd1eac070af94030b196f3236aa936c60ce0d (diff)
Merge pull request #17599 from Shadowghost/unbreak-master
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();