Skip to content

Commit

Permalink
hotfix: 푸시 알림 시 닉네임이 username이 아닌 nickname을 사용하도록 변경 (#289)
Browse files Browse the repository at this point in the history
  • Loading branch information
kdomo authored Feb 7, 2024
2 parents f35c630 + e20b4b2 commit 9547a40
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public void createFollow(FollowCreateRequest request) {
fcmService.sendMessageSync(
targetMember.getFcmInfo().getFcmToken(),
PUSH_SERVICE_TITLE,
String.format(PUSH_SERVICE_CONTENT, currentMember.getUsername()));
String.format(PUSH_SERVICE_CONTENT, currentMember.getProfile().getNickname()));
notificationService.createNotification(
NotificationType.FOLLOW, currentMember, targetMember);

Expand Down

0 comments on commit 9547a40

Please sign in to comment.