From 08663fa33984a98249f6732488d32296f37187c86191276ed04bcaad91209672 Mon Sep 17 00:00:00 2001 From: AidarKC Date: Wed, 9 Sep 2026 19:06:43 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D1=82=D1=8C=20=D1=81=D1=82=D0=B0=D1=82=D1=83=D1=81=20=D1=81?= =?UTF-8?q?=D0=BE=D1=85=D1=80=D0=B0=D0=BD=D0=B5=D0=BD=D0=B8=D1=8F=20=D1=87?= =?UTF-8?q?=D1=82=D0=B5=D0=BD=D0=B8=D1=8F=20=D0=BA=D0=B0=D0=BD=D0=B0=D0=BB?= =?UTF-8?q?=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VERSION.properties | 2 +- shine-UI/js/pages/channel-view.js | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/VERSION.properties b/VERSION.properties index adbdaefc..8269fbcc 100644 --- a/VERSION.properties +++ b/VERSION.properties @@ -1,2 +1,2 @@ -client.version=1.12.6 +client.version=1.12.7 server.version=1.10.3 diff --git a/shine-UI/js/pages/channel-view.js b/shine-UI/js/pages/channel-view.js index 75f87a51..26536cb3 100644 --- a/shine-UI/js/pages/channel-view.js +++ b/shine-UI/js/pages/channel-view.js @@ -2268,6 +2268,7 @@ function renderPostCard(post, { } function renderBody(screen, navigate, routeKey, channelData, handlers) { + const showStatus = typeof handlers?.showStatus === 'function' ? handlers.showStatus : () => {}; const unreadCount = Math.max(0, Number(channelData.unreadCount || 0)); const messagesCount = Math.max(0, Number(channelData.messagesCount || (Array.isArray(channelData.posts) ? channelData.posts.length : 0) || 0)); const readCount = Math.max(0, messagesCount - unreadCount); @@ -2910,6 +2911,7 @@ export function render({ navigate, route, chrome }) { } skeleton.remove(); cleanupSeenTracking = renderBody(screen, navigate, routeKey, apiData, { + showStatus, isActive: () => !disposed, onAddMessage: () => { openAddMessageModal({