Skip to content

Commit

Permalink
[fix] Refresh Token 재발급 로직 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
chanwoo7 committed Aug 25, 2024
1 parent 554d68f commit f7a1ce7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public JwtTokenDto reissueToken(String refreshToken) {

// 토큰 재발행
JwtTokenDto tokenDto = jwtUtil.generateToken(userDetails);
jwtUtil.storeRefreshTokenInRedis(authentication, refreshToken);
jwtUtil.storeRefreshTokenInRedis(authentication, tokenDto.getRefreshToken());

return tokenDto;
}
Expand Down

0 comments on commit f7a1ce7

Please sign in to comment.