Skip to content

Commit

Permalink
fix: isInProgress 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hocaron committed Jul 8, 2024
1 parent e92e816 commit 5994320
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public void changeEndedDate(LocalDate newEndedDate){
}

public boolean isInProgress(LocalDate baseTime){
return DateUtil.isInTime(startedAt, baseTime, endedAt);
return DateUtil.isInTime(startedAt, endedAt, baseTime);
}

public GenerationStatus getStatus(){
Expand Down

0 comments on commit 5994320

Please sign in to comment.