From d027e07383f950f91ed09078768282e624bce368 Mon Sep 17 00:00:00 2001 From: M Zahid Rausyanfikri Date: Mon, 21 Jul 2025 09:17:24 +0700 Subject: [PATCH] feat: fix bug that needUpdatePassword is not respected (#3979) --- web/src/auth/LoginPage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/auth/LoginPage.js b/web/src/auth/LoginPage.js index d215f864..87ac65fa 100644 --- a/web/src/auth/LoginPage.js +++ b/web/src/auth/LoginPage.js @@ -347,7 +347,7 @@ class LoginPage extends React.Component { return; } - if (resp.data2) { + if (resp.data3) { sessionStorage.setItem("signinUrl", window.location.pathname + window.location.search); Setting.goToLinkSoft(ths, `/forget/${application.name}`); return;