Skip to content

Commit

Permalink
fix : 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
sycuuui committed Jun 7, 2024
1 parent 0130fec commit 6ba7a55
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public LoginRes signIn(String token, String type) throws IOException {
if(member == null) {
MultipartFile imageFile = convertUrlToMultipartFile(kakaoProfile.kakao_account().profile().profile_image_url());
String uuid = s3Client.createFolder();
s3Client.upload(imageFile,uuid,"profiile");
s3Client.upload(imageFile,uuid,"profile");
Member newMember = Member.builder()
.email(kakaoProfile.kakao_account().email())
.name(kakaoProfile.kakao_account().profile().nickname())
Expand Down Expand Up @@ -95,7 +95,7 @@ public LoginRes signIn(String token, String type) throws IOException {
if (member == null) {
MultipartFile imageFile = convertUrlToMultipartFile(naverProfile.getProfile_image() != null ? naverProfile.getProfile_image() : null);
String uuid = s3Client.createFolder();
s3Client.upload(imageFile,uuid,"profiile");
s3Client.upload(imageFile,uuid,"profile");

Member newMember = Member.builder()
.email(naverProfile.getEmail() != null ? naverProfile.getEmail() : "Unknown")
Expand Down

0 comments on commit 6ba7a55

Please sign in to comment.