Skip to content

Commit

Permalink
hotfix: 푸시 알림 시 닉네임이 username이 아닌 nickname을 사용하도록 변경 (#290)
Browse files Browse the repository at this point in the history
hotfix: 푸시 알림 시 닉네임이 username이 아닌 nickname을 사용하도록 변경
  • Loading branch information
kdomo authored Feb 7, 2024
1 parent 09a6966 commit 549dd6a
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 549dd6a

Please sign in to comment.