diff options
| author | JPVenson <github@jpb.email> | 2024-11-10 21:06:15 +0000 |
|---|---|---|
| committer | JPVenson <github@jpb.email> | 2024-11-10 21:06:15 +0000 |
| commit | 911139e2d57d22c4ddc0fb0a50997d6d235c3a3c (patch) | |
| tree | b0c6bdf03a8b995bda739cbab7041067c9296dd5 | |
| parent | 6b777f9d439e4546fad4cb43cc16efca867a7cb9 (diff) | |
Fixed provider Ids not queried with baseItems
| -rw-r--r-- | Jellyfin.Server.Implementations/Item/BaseItemRepository.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs b/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs index bd2009fb4..aca5c071a 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<BaseItemEntity> 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) |
