Skip to content

Commit 025509b

Browse files
committed
fix: rowPassword 빈 문자열로 변경
1 parent 295af74 commit 025509b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/dfbf/soundlink/domain/user/service/KakaoAuthService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ private User registerNewKakaoUser(KakaoUserDTO kakaoUser, String nickname) {
106106
.socialId(Long.valueOf(kakaoUser.id()))
107107
.socialType(SocialType.KAKAO)
108108
.loginId("kakao_" + kakaoUser.id()) // 카카오 ID 기반 로그인 ID 생성
109-
.password(passwordEncoder.encode(null))
109+
.password(passwordEncoder.encode(""))
110110
.email(kakaoUser.kakao_account().email())
111111
.build();
112112
return userRepository.save(newUser);

0 commit comments

Comments
 (0)