From 9428efd8c080697763de630a86b6f0b2a90d1d8b Mon Sep 17 00:00:00 2001 From: CityFun <31820853+zhengkunwang223@users.noreply.github.com> Date: Thu, 4 Dec 2025 18:12:22 +0800 Subject: [PATCH] fix: Fixed CAPTCHA loading issue in certain scenarios (#11186) --- frontend/src/views/login/components/login-form.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/src/views/login/components/login-form.vue b/frontend/src/views/login/components/login-form.vue index d38183914..d491693a6 100644 --- a/frontend/src/views/login/components/login-form.vue +++ b/frontend/src/views/login/components/login-form.vue @@ -424,6 +424,9 @@ const getSetting = async () => { globalStore.isFxplay = isFxplay.value; globalStore.isOffLine = res.data.isOffLine; globalStore.ignoreCaptcha = !res.data.needCaptcha; + if (!globalStore.ignoreCaptcha) { + loginVerify(); + } document.title = res.data.panelName; i18n.warnHtmlMessage = false;