Skip to content

Commit 8ae1792

Browse files
committed
CLAP-431 Fix : 작업 상태 변경 알림 전송 메시지 수정
1 parent 5e8e0f6 commit 8ae1792

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/clap/server/application/service/task/UpdateTaskService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public void updateTaskStatus(Long memberId, Long taskId, TaskStatus targetTaskSt
5555
saveTaskHistory(TaskHistory.createTaskHistory(TaskHistoryType.STATUS_SWITCHED, task, targetTaskStatus.getDescription(), null, null));
5656

5757
List<Member> receivers = List.of(task.getRequester());
58-
publishNotification(receivers, updatedTask, NotificationType.STATUS_SWITCHED, String.valueOf(updatedTask.getTaskStatus()));
58+
publishNotification(receivers, updatedTask, NotificationType.STATUS_SWITCHED, targetTaskStatus.getDescription());
5959
}
6060
}
6161

0 commit comments

Comments
 (0)