From afbd619d098ff3d70fc786db9594cebf03c07e10 Mon Sep 17 00:00:00 2001 From: Charles7c Date: Mon, 3 Jun 2024 21:49:18 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E4=BC=98=E5=8C=96=E7=99=BB=E5=BD=95?= =?UTF-8?q?=20Helper?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/top/continew/admin/common/util/helper/LoginHelper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/continew-admin-common/src/main/java/top/continew/admin/common/util/helper/LoginHelper.java b/continew-admin-common/src/main/java/top/continew/admin/common/util/helper/LoginHelper.java index 9812a7ad5..696781fda 100644 --- a/continew-admin-common/src/main/java/top/continew/admin/common/util/helper/LoginHelper.java +++ b/continew-admin-common/src/main/java/top/continew/admin/common/util/helper/LoginHelper.java @@ -93,7 +93,7 @@ public static LoginUser getLoginUser() throws NotLoginException { * @return 登录用户信息 */ public static LoginUser getLoginUser(String token) { - SaSession tokenSession = StpUtil.getTokenSessionByToken(token); + SaSession tokenSession = StpUtil.getStpLogic().getTokenSessionByToken(token, false); if (null == tokenSession) { return null; }