Skip to content

Commit

Permalink
fix : plan의 member로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
sycuuui committed Jun 11, 2024
1 parent bb6c2c0 commit d904e26
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public List<PlanBookmarkRes> getPlanBookmarks(Member member) {

List<PlanBookmark> planBookmarkList = planBookmarkRepository.findAllByMemberOrderByCreatedAtDesc(member);
planBookmarkList.forEach( planBookmark -> {
list.add(PlanBookmarkRes.of(planBookmark.getPlan(),s3Client.getUrl()+planBookmark.getMember().getProfileUuid()+"/profile",getPlanImageUrl(member, planBookmark.getPlan())));
list.add(PlanBookmarkRes.of(planBookmark.getPlan(),s3Client.getUrl()+planBookmark.getPlan().getMember().getProfileUuid()+"/profile",getPlanImageUrl(member, planBookmark.getPlan())));
});

return list;
Expand Down

0 comments on commit d904e26

Please sign in to comment.