aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs
diff options
context:
space:
mode:
authorShadowghost <Ghost_of_Stone@web.de>2026-03-06 00:16:04 +0100
committerShadowghost <Ghost_of_Stone@web.de>2026-03-06 00:16:04 +0100
commit268f23f39ac18e783156b91b575ee6a105b6937c (patch)
treee09b0dd1801dd6738135e30101dce34242eebec8 /Jellyfin.Server.Implementations/Item/BaseItemRepository.cs
parent744c5539d8471addca131c9d9f7e8c4e30f8c4b5 (diff)
Fix trickplay generation for parts and alt versions
Diffstat (limited to 'Jellyfin.Server.Implementations/Item/BaseItemRepository.cs')
-rw-r--r--Jellyfin.Server.Implementations/Item/BaseItemRepository.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs b/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs
index 6b575fbad3..23a426ac58 100644
--- a/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs
+++ b/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs
@@ -3583,7 +3583,7 @@ public sealed class BaseItemRepository
.Where(e => e.OwnerId == null);
}
}
- else if (filter.OwnerIds.Length == 0 && filter.ExtraTypes.Length == 0)
+ else if (filter.OwnerIds.Length == 0 && filter.ExtraTypes.Length == 0 && !filter.IncludeOwnedItems)
{
// Exclude alternate versions from general queries. Alternate versions have
// OwnerId set (pointing to their primary) but no ExtraType.