Skip to content

Commit

Permalink
[COZY-205] feat: RoomLog에서 name을 반환하는 것을 nickname으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
eple0329 authored Aug 21, 2024
1 parent 6d78890 commit 3dfdcee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public void addRoomLogFromTodo(Todo todo) {
roomLogRepository.delete(existingLog.get());
}
if (Boolean.TRUE.equals(todo.isCompleted()) && existingLog.isEmpty()) {
String who = "{" + todo.getMate().getMember().getName() + "}님이 ";
String who = "{" + todo.getMate().getMember().getNickname() + "}님이 ";
String what = "[" + todo.getContent() + "]을/를 ";
String finish = DEFAULT_FINAL_MESSAGE;

Expand Down

0 comments on commit 3dfdcee

Please sign in to comment.