Skip to content

Commit

Permalink
Merge pull request #63 from SWM-WeLike2Coding/fix/appleOauthV2
Browse files Browse the repository at this point in the history
fix: 최초 인증 시에만 오는 애플 닉네임에 대한 문자열 초기화
  • Loading branch information
kjungw1025 authored Oct 18, 2024
2 parents dcc2f7c + eb27b8e commit 7747723
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public class AppleOAuth2V2Service {
@Value("${oauth2.apple.revoke-token-uri}")
private String appleRevokeTokenUri;

private String fullName;
private String fullName = "";

public static final String OAUTH_AUTH_NAME = "oauth";

Expand Down

0 comments on commit 7747723

Please sign in to comment.