From 49d60c1720491e8ac2dd16b5518b8f03c611b27f Mon Sep 17 00:00:00 2001 From: dl-00-e8 Date: Sun, 18 Feb 2024 23:29:58 +0900 Subject: [PATCH] =?UTF-8?q?[#60]=20fix:=20=EA=B3=B5=EA=B3=A0=20=EC=83=81?= =?UTF-8?q?=EC=84=B8=20=EC=A1=B0=ED=9A=8C=20API=20=EB=B0=98=ED=99=98=20?= =?UTF-8?q?=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/gongjakso/server/domain/apply/service/ApplyService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/gongjakso/server/domain/apply/service/ApplyService.java b/src/main/java/com/gongjakso/server/domain/apply/service/ApplyService.java index 8c556a41..aef7c438 100644 --- a/src/main/java/com/gongjakso/server/domain/apply/service/ApplyService.java +++ b/src/main/java/com/gongjakso/server/domain/apply/service/ApplyService.java @@ -239,7 +239,7 @@ public List getMyApplyList(Member member) { // Business Logic List applyList = applyRepository.findAllByMemberAndDeletedAtIsNull(member); List postIdList = applyList.stream() - .map(Apply::getApplyId) + .map(apply -> apply.getPost().getPostId()) .toList(); List postList = postRepository.findAllByPostIdInAndStatusAndDeletedAtIsNull(postIdList, RECRUITING);