From d8ff6aacf3fccec1383c09056f26d516098a059e Mon Sep 17 00:00:00 2001 From: letgo Date: Wed, 8 May 2024 15:14:46 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20login=20=E6=8F=92=E4=BB=B6=E8=8E=B7?= =?UTF-8?q?=E5=8F=96=E9=85=8D=E7=BD=AE=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/fes-plugin-login/src/runtime/runtime.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/fes-plugin-login/src/runtime/runtime.js b/packages/fes-plugin-login/src/runtime/runtime.js index 29a41860..574da7ad 100644 --- a/packages/fes-plugin-login/src/runtime/runtime.js +++ b/packages/fes-plugin-login/src/runtime/runtime.js @@ -40,7 +40,7 @@ const defaultExport = { if (request.version) { defaultExport.request = (memo) => { - const config = getRunTimeConfig(); + const config = getLoginConfig(); if (config.ignore401Redirect) { return memo; } @@ -59,6 +59,10 @@ if (request.version) { } else { defaultExport.request = (memo) => { + const config = getLoginConfig(); + if (config.ignore401Redirect) { + return memo; + } if (!memo.responseInterceptors) { memo.responseInterceptors = []; }