Skip to content

Commit

Permalink
fix: 댓글 알림 deepLink target 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
char-yb committed Oct 15, 2024
1 parent b250f31 commit 125ad38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ private void sendNotification(
title,
message,
tokens,
missionRecord.getId(),
comment.getId(),
missionRecord.getId(),
FcmNotificationType.valueOf(notificationTypeName));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public static String generateDeepLink(
return null;
}

public static String generateCommentDeepLink(Long recordId, Long commentId) {
public static String generateCommentDeepLink(Long commentId, Long recordId) {
return DEEP_LINK_PREFIX + "comment?recordId=" + recordId + "&commentId=" + commentId;
}
}

0 comments on commit 125ad38

Please sign in to comment.