Skip to content

Commit

Permalink
chore(AuthService): OAuthService 초기화 값 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
limjustin committed Feb 13, 2024
1 parent 040586c commit 904d95c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/umc/meme/auth/global/auth/AuthService.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public AuthResponse.TokenDto login(AuthRequest.LoginDto loginDto) throws AuthExc
}

private User getUser(AuthRequest.LoginDto loginDto) throws AuthException {
OAuthService oAuthService = null;
OAuthService oAuthService;

if (loginDto.getProvider() == "KAKAO") {
oAuthService = new KakaoAuthService(userRepository, redisRepository);
Expand Down

0 comments on commit 904d95c

Please sign in to comment.