@clawos-dev/clawd 0.2.176 → 0.2.177-beta.356.d98d67b
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.cjs +2 -2
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -55660,10 +55660,10 @@ function buildAppBuilderHandlers(deps) {
|
|
|
55660
55660
|
}
|
|
55661
55661
|
|
|
55662
55662
|
// src/handlers/shift.ts
|
|
55663
|
-
function daemonShiftToUiShift(d,
|
|
55663
|
+
function daemonShiftToUiShift(d, _nowMs) {
|
|
55664
55664
|
if (d.schedule.kind === "at") {
|
|
55665
55665
|
const atMs = Date.parse(d.schedule.at);
|
|
55666
|
-
if (Number.isNaN(atMs)
|
|
55666
|
+
if (Number.isNaN(atMs)) return null;
|
|
55667
55667
|
}
|
|
55668
55668
|
const noteParts = [d.name];
|
|
55669
55669
|
if (d.prompt && d.prompt.length > 0) {
|
package/package.json
CHANGED