【更新】修复C端token名称带后缀导致的token无效的bug

pull/53/head
徐玉祥 2022-10-29 22:07:08 +08:00
parent ab2e3e6573
commit 82344e240b
1 changed files with 1 additions and 2 deletions

View File

@ -19,7 +19,6 @@ import cn.dev33.satoken.stp.SaLoginModel;
import cn.dev33.satoken.stp.SaTokenInfo;
import cn.dev33.satoken.stp.StpLogic;
import cn.dev33.satoken.stp.StpUtil;
import cn.hutool.core.util.StrUtil;
import java.util.List;
@ -46,7 +45,7 @@ public class StpClientUtil {
*/
@Override
public String splicingKeyTokenName() {
return super.splicingKeyTokenName() + StrUtil.DASHED + TYPE;
return super.splicingKeyTokenName();
}
// 此处可以根据需求重写其他方法