diff --git a/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs b/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs index bd2009fb49..aca5c071a3 100644 --- a/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs +++ b/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs @@ -224,6 +224,7 @@ public sealed class BaseItemRepository( using var context = dbProvider.CreateDbContext(); IQueryable dbQuery = context.BaseItems.AsNoTracking() .Include(e => e.TrailerTypes) + .Include(e => e.Provider) .Include(e => e.Images) .Include(e => e.LockedFields); dbQuery = TranslateQuery(dbQuery, context, filter)