From 05a94414932b8d56010d228dfbd15187ab0fbceb62ec92dbbce924c9c1c4c9a4 Mon Sep 17 00:00:00 2001 From: AidarKC Date: Sun, 28 Jun 2026 12:09:13 +0400 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=D0=BF=D0=BE=D0=B4=D0=BF=D0=B8=D1=81=D1=8C=20Sen?= =?UTF-8?q?dSignal=20=D0=B2=20UI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VERSION.properties | 4 ++-- shine-UI/js/services/auth-service.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/VERSION.properties b/VERSION.properties index 0735d24..adb3ee7 100644 --- a/VERSION.properties +++ b/VERSION.properties @@ -1,2 +1,2 @@ -client.version=1.2.283 -server.version=1.2.263 +client.version=1.2.284 +server.version=1.2.264 diff --git a/shine-UI/js/services/auth-service.js b/shine-UI/js/services/auth-service.js index 1b19e5b..c950e9a 100644 --- a/shine-UI/js/services/auth-service.js +++ b/shine-UI/js/services/auth-service.js @@ -148,7 +148,7 @@ function normalizeHex32(value, fallback = ZERO64) { async function sha256Base64FromText(text) { const digest = await sha256Bytes(utf8Bytes(String(text || ''))); - return bytesToBase64(digest); + return bytesToBase64(digest).replace(/=+$/g, ''); } function concatBytes(...chunks) {