From f4a6123532866dc2cdd2a3de67b44ccf82bcdf47 Mon Sep 17 00:00:00 2001 From: Robert Down Date: Mon, 24 Feb 2025 21:36:33 -0500 Subject: [PATCH] Fixes 6576 by rendering the Channel logo image type on the guide instead of primary --- src/components/guide/guide.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/guide/guide.js b/src/components/guide/guide.js index a56ae355f4..f07c09eb82 100644 --- a/src/components/guide/guide.js +++ b/src/components/guide/guide.js @@ -232,7 +232,7 @@ function Guide(options) { channelQuery.Limit = channelLimit; channelQuery.AddCurrentProgram = false; channelQuery.EnableUserData = false; - channelQuery.EnableImageTypes = 'Primary'; + channelQuery.EnableImageTypes = 'Logo'; const categories = self.categoryOptions.categories || []; const displayMovieContent = !categories.length || categories.indexOf('movies') !== -1; @@ -591,7 +591,7 @@ function Guide(options) { let html = ''; for (const channel of channels) { - const hasChannelImage = channel.ImageTags.Primary; + const hasChannelImage = channel.ImageTags.Logo; let cssClass = 'guide-channelHeaderCell itemAction'; @@ -612,8 +612,8 @@ function Guide(options) { if (hasChannelImage) { const url = apiClient.getScaledImageUrl(channel.Id, { maxHeight: 220, - tag: channel.ImageTags.Primary, - type: 'Primary' + tag: channel.ImageTags.Logo, + type: 'Logo' }); html += '
';