Skip to content

Commit

Permalink
fix: chatRoomId로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
geneaky committed Oct 30, 2024
1 parent 741b6bd commit 7747c3c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public void deleteUser(Long userId) {
.collect(Collectors.toList());
participantManager.deleteAllWithChatRoom(chatRoomIds);

chatAppender.appendAnnouncements(participants.stream().map(Participant::getId).collect(Collectors.toList()),
chatAppender.appendAnnouncements(participants.stream().map(Participant::getChatRoomId).collect(Collectors.toList()),
"#" + userId + "#님이 퇴장하셨습니다.");
}

Expand Down

0 comments on commit 7747c3c

Please sign in to comment.