This commit is contained in:
石皮幼鸟 2024-04-11 20:06:24 +08:00
parent 839413d2e2
commit baef746aff
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ public class JwtUtil {
* 获取过期时间
*/
public static Date getExpiresAt(String token) {
return JwtUtil.getExpiresAt(token);
return verify(token).getExpiresAt();
}
/**