From cdfc416d02237e07f3f3e868c8c1a0057bfcb7bf090b919d995bdce2682a45af Mon Sep 17 00:00:00 2001 From: DrygMira Date: Tue, 14 Apr 2026 13:49:03 +0300 Subject: [PATCH] Finalize remaining Channels updates --- shine-UI/js/pages/channel-view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shine-UI/js/pages/channel-view.js b/shine-UI/js/pages/channel-view.js index abd739a..b301a68 100644 --- a/shine-UI/js/pages/channel-view.js +++ b/shine-UI/js/pages/channel-view.js @@ -603,7 +603,7 @@ function renderBody(screen, navigate, routeKey, channelData, handlers) { const title = document.createElement('strong'); title.className = 'channel-head-title'; - title.textContent = channelData.channel.displayName || channelData.channel.name; + title.textContent = String(channelData.channel.name || '').trim(); const owner = document.createElement('p'); owner.className = 'channel-head-meta';