Skip to content

Commit

Permalink
[CHORE] 큰 따옴표 추가 (#269)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekks authored Jul 24, 2024
1 parent 4a723c3 commit 67dc9d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ public void mentionUserInComment(CommentV2MentionUserInCommentRequestDto request
User user = userRepository.findByIdOrThrow(userId);
Post post = postRepository.findByIdOrThrow(requestBody.getPostId());

String pushNotificationContent = requestBody.getContent();
String pushNotificationContent = "\"" + requestBody.getContent() + "\"";
String pushNotificationWeblink = pushWebUrl + "/post?id=" + post.getId();

String[] userOrgIds = requestBody.getUserIds().stream()
Expand Down

0 comments on commit 67dc9d1

Please sign in to comment.