fixed problem "showing task multiple times in in schedule"
This commit is contained in:
parent
5f7d690875
commit
0074d43364
|
@ -181,6 +181,7 @@ public class GardenSchedule {
|
|||
do {
|
||||
if (date.equals(task.getNextExecution()) || (date.equals(checkDate) && !date.isAfter(task.getEndDate().orElse(LocalDate.MIN)))) {
|
||||
dayTaskList.get(finalI).add(task);
|
||||
break;
|
||||
}
|
||||
checkDate = checkDate.plusDays(task.getInterval().orElse(0));
|
||||
} while (!(task.getInterval().orElse(0) == 0) && checkDate.isBefore(LocalDate.now().plusDays(listLength)));
|
||||
|
|
Loading…
Reference in New Issue