From 8544e7fc72a758ad3b89aafba197f5f25c5808b1 Mon Sep 17 00:00:00 2001 From: Marc Brooks Date: Sun, 9 Feb 2025 10:44:47 -0600 Subject: [PATCH] Fix LiveTV Guide Backdrop image not updating (#13504) If the guide data changes an any other image, the Backdrop would not be updated. Fixes #13496 --- src/Jellyfin.LiveTv/Guide/GuideManager.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Jellyfin.LiveTv/Guide/GuideManager.cs b/src/Jellyfin.LiveTv/Guide/GuideManager.cs index 05d2ae41de..7d8459d8ad 100644 --- a/src/Jellyfin.LiveTv/Guide/GuideManager.cs +++ b/src/Jellyfin.LiveTv/Guide/GuideManager.cs @@ -679,7 +679,9 @@ public class GuideManager : IGuideManager updated |= UpdateImage(ImageType.Logo, item, info); // Backdrop - return updated || UpdateImage(ImageType.Backdrop, item, info); + updated |= UpdateImage(ImageType.Backdrop, item, info); + + return updated; } private static bool UpdateImage(ImageType imageType, BaseItem item, ProgramInfo info)