Skip to content

Commit

Permalink
Fix: Access Token 검증 오류 해결 (#134)
Browse files Browse the repository at this point in the history
* #133 - fix: ! 연산자 누락 해결 (#134)
  • Loading branch information
morenow98 authored Feb 16, 2024
1 parent d62d024 commit 29b7a38
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 isBlocked(String accessToken) {
}

public void validateRegisteredMember(Long memberId) {
if (memberRepository.existsById(memberId)) {
if (!memberRepository.existsById(memberId)) {
throw new EntityNotFoundException("유저 정보를 찾을 수 없습니다.");
}
}
Expand Down

0 comments on commit 29b7a38

Please sign in to comment.