Skip to content

Commit 5ceb627

Browse files
author
Codex Agent
committed
fixing plan-runner
1 parent fac98aa commit 5ceb627

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

workout-time/plan-runner.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
} catch (e) {
9191
/* ignore */
9292
}
93-
restSec: this._normalizeRestSeconds(entry?.restSecOverride ?? item.restSec),
93+
}
9494
} catch (e) {
9595
/* best-effort debug logging */
9696
}
@@ -169,7 +169,7 @@
169169
`DEBUG: _planAdvance start — timelineIndex=${this.planTimelineIndex} cursor=${JSON.stringify(this.planCursor)} reason=${String(
170170
completion?.reason,
171171
)}`,
172-
const restSec = this._normalizeRestSeconds(restSource?.restSec);
172+
"debug",
173173
);
174174
if (this.supersetExecutor && this.groupExecutionMode) {
175175
try {
@@ -234,7 +234,7 @@
234234
this.updateCurrentSetLabel?.();
235235
const nextLabel = nextItem.name || (nextItem.type === "exercise" ? "Exercise" : "Echo");
236236
this.addLogEntry(
237-
const restTotal = this._normalizeRestSeconds(totalSec);
237+
`Superset continuing → ${nextLabel}`,
238238
"info",
239239
);
240240
try {
@@ -719,7 +719,7 @@
719719
}
720720
},
721721

722-
const restSec = this._normalizeRestSeconds(item.restSec);
722+
_pauseRestCountdown: function _pauseRestCountdown() {
723723
const state = this._restState;
724724
if (!state) {
725725
return;

0 commit comments

Comments
 (0)