Skip to content

Commit

Permalink
hotfix : 마감일 산정일 변경(3>2)
Browse files Browse the repository at this point in the history
  • Loading branch information
bo-ram-bo-ram authored Sep 17, 2024
1 parent 26d5fac commit c97c2e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/pickple/server/global/util/DateUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class DateUtil {

public static int calculateDayOfDay(LocalDate date) {
LocalDate today = LocalDate.now();
int dday = (int) ChronoUnit.DAYS.between(today, date) - 3;
int dday = (int) ChronoUnit.DAYS.between(today, date) - 2;
return dday;
}

Expand Down

0 comments on commit c97c2e3

Please sign in to comment.