Quellcode durchsuchen

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
Marc Brooks vor 5 Monaten
Ursprung
Commit
8544e7fc72
1 geänderte Dateien mit 3 neuen und 1 gelöschten Zeilen
  1. 3 1
      src/Jellyfin.LiveTv/Guide/GuideManager.cs

+ 3 - 1
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)