Skip to content

Commit

Permalink
fix: jwtHelper 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
GayeongKimm committed Jul 31, 2024
1 parent baa848d commit 5c7e40a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class JwtHelper {
@Transactional
public Authentication getAuthentication(String accessToken) {
Claims claims = getClaims(accessToken);
MemberEntity member = memberRepository.findByMemberId(claiㅎms.getSubject());
MemberEntity member = memberRepository.findByMemberId(claims.getSubject());

CustomMemberDetails details = new CustomMemberDetails(member);

Expand Down

0 comments on commit 5c7e40a

Please sign in to comment.