Skip to content

Commit

Permalink
fix : /open 공개 일정 date+1로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
sycuuui committed Sep 11, 2024
1 parent 1bcc502 commit 8d32619
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public record OpenPlanRes(
) {
public static OpenPlanRes of(Plan plan,String memberImageUrl,String imageUrl){
Period period = Period.between(plan.getStartDate(),plan.getEndDate());
String date = period.getDays()+"일일정";
String date = (period.getDays()+1)+"일일정";

return OpenPlanRes.builder()
.planId(plan.getPlanId())
Expand Down

0 comments on commit 8d32619

Please sign in to comment.