Skip to content

Commit

Permalink
bug: 회원가입 1단계 isNewAccount 반환값 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
qzzloz committed Jan 8, 2025
1 parent 4446108 commit 491dd48
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public MobileTokenResponseDTO verifyGoogleToken(String accessToken, String name)
if (existingUser.isPresent()) {
// 기존 사용자: Role 정보 가져오기
role = existingUser.get().getRole();
isNewAccount = true;
isNewAccount = false;
log.info("Existing user found: " + username);
} else {
// 새로운 사용자: Role 기본값 설정
Expand Down

0 comments on commit 491dd48

Please sign in to comment.