Skip to content

Commit

Permalink
[FIX] 리프레시 토큰 파싱 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ohksj77 committed Nov 23, 2023
1 parent a65aab2 commit 4843c9f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public boolean validateToken(String token) {
try {
Jwts.parserBuilder().setSigningKey(key).build().parseClaimsJws(token);
return true;
} catch (ExpiredJwtException | UnsupportedJwtException | IllegalStateException e) {
} catch (ExpiredJwtException | UnsupportedJwtException | IllegalStateException | MalformedJwtException e) {
return false;
}
}
Expand Down

0 comments on commit 4843c9f

Please sign in to comment.