Skip to content

Commit

Permalink
#153 채팅 방번호로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
hee1su123 committed Aug 3, 2022
1 parent c318c7f commit d23b344
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void sendChatMessage(ChatMessageRequestDto message, String email) {
if (u == user) {
continue;
}
String notification = room.getName() + "에서 새로운 메시지가 도착했습니다";
String notification = room.getRoomId();
NotificationRequestDto requestDto = new NotificationRequestDto(com.example.backend.notification.domain.Type.채팅, notification);
notificationService.sendNotification(u.getUserSeq(), requestDto);
}
Expand Down

0 comments on commit d23b344

Please sign in to comment.