From f87c8d8d60f8564c23cadd7657c19302611a2cdc Mon Sep 17 00:00:00 2001 From: tianshujie Date: Thu, 8 May 2025 13:53:25 +0800 Subject: [PATCH] * [bug#62312,done,2h] fix the issue of page redirection after the login information became invalid. --- module/index/js/index.ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/index/js/index.ui.js b/module/index/js/index.ui.js index 90484461ad..70868c4590 100644 --- a/module/index/js/index.ui.js +++ b/module/index/js/index.ui.js @@ -583,7 +583,7 @@ function logout(url) try { data = JSON.parse(data); - if(data.load) load = data.load; + if(data.load != 'login') load = data.load; } catch (error) {} location.href = load;