From f827c3e493be75df8ab78e3d42b9a9b322fa5f51aa556e52e3beda9f31923097 Mon Sep 17 00:00:00 2001 From: AidarKC Date: Wed, 9 Sep 2026 10:23:36 +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=D0=BF=D0=BE=D0=B2=D1=82=D0=BE=D1=80=D0=BD=D1=83?= =?UTF-8?q?=D1=8E=20=D0=B0=D0=B2=D1=82=D0=BE=D1=80=D0=B8=D0=B7=D0=B0=D1=86?= =?UTF-8?q?=D0=B8=D1=8E=20=D0=BF=D1=80=D0=B8=20=D0=B2=D1=85=D0=BE=D0=B4?= =?UTF-8?q?=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VERSION.properties | 2 +- shine-UI/js/pages/login-password-view.js | 2 +- shine-UI/js/state.js | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/VERSION.properties b/VERSION.properties index 521538c7..a9b1d142 100644 --- a/VERSION.properties +++ b/VERSION.properties @@ -1,2 +1,2 @@ -client.version=1.12.2 +client.version=1.12.3 server.version=1.10.1 diff --git a/shine-UI/js/pages/login-password-view.js b/shine-UI/js/pages/login-password-view.js index 2e1b9b4a..2f869e8a 100644 --- a/shine-UI/js/pages/login-password-view.js +++ b/shine-UI/js/pages/login-password-view.js @@ -113,7 +113,7 @@ export function render({ navigate }) { enterButton.disabled = true; try { - await authService.reconnect(state.entrySettings.shineServer); + authService.resetConnection(state.entrySettings.shineServer, { clearSessionContext: true }); // Повторная проверка защищает UI от смены access server между первым экраном и входом. const resolved = await authService.resolveLoginForAuth(currentLogin); diff --git a/shine-UI/js/state.js b/shine-UI/js/state.js index b5002c4d..1e406789 100644 --- a/shine-UI/js/state.js +++ b/shine-UI/js/state.js @@ -1313,6 +1313,7 @@ export async function closeSavedProfile(login) { if (!next) { setActiveProfileLoginRaw(''); clearStoredSession(); + authService.resetConnection(state.entrySettings.shineServer, { clearSessionContext: true }); return { closed: true, nextProfile: null }; } setActiveProfileLoginRaw(next.login);