[PR #13504] [MERGED] Fix LiveTV Guide Backdrop image not updating #13606

Closed
opened 2026-02-07 07:15:58 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/jellyfin/jellyfin/pull/13504
Author: @IDisposable
Created: 2/5/2025
Status: Merged
Merged: 2/9/2025
Merged by: @crobibero

Base: release-10.10.zHead: fix-guide-backdrop


📝 Commits (1)

  • 5fbc4b4 Fix LiveTV Guide Backdrop image not updating

📊 Changes

1 file changed (+3 additions, -1 deletions)

View changed files

📝 src/Jellyfin.LiveTv/Guide/GuideManager.cs (+3 -1)

📄 Description

If the guide data changes any other image, the Backdrop image would not be updated.

This error was unintentionally introduced in PR https://github.com/jellyfin/jellyfin/pull/13227 here

Changes

Replace the short-circuiting || operator with a normal | OR operator to ensure that the call for UpdateImage for the Backdrop image still happens even if other images were also updated.

// Backdrop
return updated || UpdateImage(ImageType.Backdrop, item, info);

Issues

Fixes https://github.com/jellyfin/jellyfin/issues/13496


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/jellyfin/jellyfin/pull/13504 **Author:** [@IDisposable](https://github.com/IDisposable) **Created:** 2/5/2025 **Status:** ✅ Merged **Merged:** 2/9/2025 **Merged by:** [@crobibero](https://github.com/crobibero) **Base:** `release-10.10.z` ← **Head:** `fix-guide-backdrop` --- ### 📝 Commits (1) - [`5fbc4b4`](https://github.com/jellyfin/jellyfin/commit/5fbc4b4b0e5f303d8a4fe36faf1bfaaf6565c300) Fix LiveTV Guide Backdrop image not updating ### 📊 Changes **1 file changed** (+3 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `src/Jellyfin.LiveTv/Guide/GuideManager.cs` (+3 -1) </details> ### 📄 Description If the guide data changes any other image, the Backdrop image would not be updated. This error was unintentionally introduced in PR https://github.com/jellyfin/jellyfin/pull/13227 [here](https://github.com/jellyfin/jellyfin/pull/13227/files#diff-68cbfbf495bc9462524e5e837822194c426c5008491dfccdbc8773ef784aea50R682) ## Changes Replace the short-circuiting || operator with a normal | OR operator to ensure that the call for UpdateImage for the Backdrop image still happens even if other images were also updated. ```csharp // Backdrop return updated || UpdateImage(ImageType.Backdrop, item, info); ``` ## Issues Fixes https://github.com/jellyfin/jellyfin/issues/13496 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-07 07:15:58 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/jellyfin#13606