【7.3.2】更新基础拦截器

pull/20/head v7.3.2
fengshuonan 2022-11-09 20:59:34 +08:00
parent 5e9348d924
commit bc94830a25
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ public abstract class BaseSecurityInterceptor implements HandlerInterceptor {
// 5.1 token没过期但是session过期了则从新进行会话创建操作因为只有开启remember的用户才有这种情况
if (defaultJwtPayload != null && !sessionManagerApi.haveSession(token)) {
authServiceApi.createNewLoginInfo(token, defaultJwtPayload.getAccount());
authServiceApi.createNewLoginInfo(token, defaultJwtPayload);
}
}