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
This commit is contained in:
Marc Brooks 2025-02-09 10:44:47 -06:00 committed by GitHub
parent 117d2082aa
commit 8544e7fc72
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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)