diff --git a/src/systems/workout.js b/src/systems/workout.js index 09c088c..27038b6 100644 --- a/src/systems/workout.js +++ b/src/systems/workout.js @@ -133,7 +133,7 @@ class Workout { } else if (this.program.warmupMin > ws.minutes) { targetLevel = this.program.warmupLevel; } - if (targetLevel !== ws.level && status === "started") { + if (targetLevel !== ws.level && this.state === "started") { this.driver.setLevel(targetLevel); }