From 741397f1beff1844b4ca2f9c84ec55b169f6ac54 Mon Sep 17 00:00:00 2001 From: JPVenson Date: Mon, 11 Nov 2024 07:00:51 +0000 Subject: Fixed images not loading --- Jellyfin.Server.Implementations/Item/BaseItemRepository.cs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'Jellyfin.Server.Implementations/Item/BaseItemRepository.cs') diff --git a/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs b/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs index 0e9996873..4af03abf1 100644 --- a/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs +++ b/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs @@ -1326,7 +1326,11 @@ public sealed class BaseItemRepository( } using var context = dbProvider.CreateDbContext(); - var item = context.BaseItems.AsNoTracking().FirstOrDefault(e => e.Id == id); + var item = context.BaseItems + .Include(e => e.TrailerTypes) + .Include(e => e.Provider) + .Include(e => e.Images) + .Include(e => e.LockedFields).AsNoTracking().FirstOrDefault(e => e.Id == id); if (item is null) { return null; @@ -1465,6 +1469,10 @@ public sealed class BaseItemRepository( { dto.ImageInfos = entity.Images.Select(Map).ToArray(); } + else + { + System.Console.WriteLine(); + } // dto.Type = entity.Type; // dto.Data = entity.Data; -- cgit v1.2.3