Skip to content

Commit

Permalink
[fix] #146 토큰 블랙리스트 검증 시 예외처리 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
chanwoo7 committed Sep 11, 2024
1 parent 7daada6 commit f02a897
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ private void processAuthorizationToken(String authorization, RequestWrapper wrap
} catch (ExpiredJwtException e) {
setJwtException(wrappedRequest, ErrorCode.JWT_EXPIRED);
} catch (CustomException e) {
setJwtException(wrappedRequest, e.getCode());
setJwtException(wrappedRequest, ErrorCode.JWT_IS_BLACKLISTED);
} catch (Exception e) {
setJwtException(wrappedRequest, ErrorCode.INVALID_CREDENTIALS);
} finally {
Expand Down

0 comments on commit f02a897

Please sign in to comment.