Skip to content

Commit

Permalink
hotfix : 프론트 알림 문제로, 매칭관련 내용외 알림 정지
Browse files Browse the repository at this point in the history
  • Loading branch information
mjj111 committed Oct 17, 2024
1 parent 1a2e5e2 commit 2c8257a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public void sendBoardNotification(Comment comment, Member writer) {
.setToken(token)
.setNotification(notification)
.build();
sendSingleFcm(message);
// sendSingleFcm(message);
}

public void sendBoardNotification(Comment comment, List<Member> writers) {
Expand All @@ -65,13 +65,13 @@ public void sendBoardNotification(Comment comment, List<Member> writers) {
.setToken(token)
.setNotification(notification)
.build();
sendSingleFcm(message);
// sendSingleFcm(message);
}
}

public void sendChatMessage(com.aliens.backend.chat.domain.Message message) {
var fcmMessage = createFcmMessage(message);
sendSingleFcm(fcmMessage);
// sendSingleFcm(fcmMessage);
}

private com.google.firebase.messaging.Message createFcmMessage(com.aliens.backend.chat.domain.Message request) {
Expand Down

0 comments on commit 2c8257a

Please sign in to comment.