Skip to content

Commit

Permalink
hotfix: date equals 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
ymkim97 committed Dec 3, 2023
1 parent 8917d5b commit fc679b2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ private List<LocalDate> getCertifiedDatesBeforeWeek(Long roomId) {
}

private double calculateCompletePercentage(int certifiedMembersCount, Room room, LocalDate date) {
if (date != clockHolder.date()) {
if (!date.equals(clockHolder.date())) {
return 0;
}

Expand Down

0 comments on commit fc679b2

Please sign in to comment.