Skip to content

Commit

Permalink
Fixing issue with loop not exiting early. (#332)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff-winn authored Jun 27, 2023
1 parent 567d62f commit 8703710
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export class AutomowerMowerScheduleConverterImpl implements AutomowerMowerSchedu
for (const task of calendar.tasks) {
if (task !== undefined && this.isAnyDayOfWeekTask(task) && !this.isAlwaysRunTask(task)) {
result = true;
break;
}
}

Expand Down

0 comments on commit 8703710

Please sign in to comment.