Skip to content

Commit

Permalink
fix: fix to decrpyt also phoneNumber
Browse files Browse the repository at this point in the history
  • Loading branch information
JIUNG9 committed Dec 14, 2023
1 parent 8804472 commit cbdef7d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public SocialLoginRequestCommand decrypt(SocialLoginRequestCommand command) thro
String email = encryptionUtil.decrypt(command.getEmail());
String socialId = encryptionUtil.decrypt(command.getSocialId().getValue().toString());
String nickname = encryptionUtil.decrypt(command.getNickname());
return createDecryptDto(null, email, new AuthId(Long.valueOf(socialId)), nickname);
return createDecryptDto(phoneNumber, email, new AuthId(Long.valueOf(socialId)), nickname);
}


Expand Down

0 comments on commit cbdef7d

Please sign in to comment.