From c543be1a0ee66abd63d244bf029c2e3cbaef971a Mon Sep 17 00:00:00 2001 From: fengshuonan Date: Thu, 11 May 2023 23:14:37 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=907.6.0=E3=80=91=E6=9B=B4=E6=96=B0BaseSe?= =?UTF-8?q?curityInterceptor=EF=BC=8C=E7=A7=BB=E9=99=A4cookie=E6=8E=A7?= =?UTF-8?q?=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../guns/core/security/base/BaseSecurityInterceptor.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/cn/stylefeng/guns/core/security/base/BaseSecurityInterceptor.java b/src/main/java/cn/stylefeng/guns/core/security/base/BaseSecurityInterceptor.java index f68dc894..e6972853 100644 --- a/src/main/java/cn/stylefeng/guns/core/security/base/BaseSecurityInterceptor.java +++ b/src/main/java/cn/stylefeng/guns/core/security/base/BaseSecurityInterceptor.java @@ -65,7 +65,6 @@ public abstract class BaseSecurityInterceptor implements HandlerInterceptor { defaultJwtPayload = authServiceApi.validateToken(token); } catch (AuthException authException) { if (AuthExceptionEnum.AUTH_EXPIRED_ERROR.getErrorCode().equals(authException.getErrorCode())) { - sessionManagerApi.destroySessionCookie(); throw authException; } }