Merge branch 'master' of github.com:haoxianrui/youlai-boot

This commit is contained in:
Ray.Hao
2025-04-15 22:30:22 +08:00
5 changed files with 38 additions and 3 deletions

View File

@@ -218,7 +218,7 @@ public class AuthServiceImpl implements AuthService {
@Override
public AuthenticationToken refreshToken(String refreshToken) {
// 验证刷新令牌
boolean isValidate = tokenManager.validateToken(refreshToken);
boolean isValidate = tokenManager.validateRefreshToken(refreshToken);
if (!isValidate) {
throw new BusinessException(ResultCode.REFRESH_TOKEN_INVALID);