@clawos-dev/clawd 0.2.223-beta.436.2997d99 → 0.2.224-beta.437.7f84075
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 -3
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -49794,9 +49794,8 @@ var SessionObserver = class {
|
|
|
49794
49794
|
|
|
49795
49795
|
// src/observer/observer-status-broadcast.ts
|
|
49796
49796
|
function shouldBroadcastObserverStatus(status, procAlive, hasRunner) {
|
|
49797
|
-
if (status === "
|
|
49798
|
-
|
|
49799
|
-
return true;
|
|
49797
|
+
if (status === "observing") return false;
|
|
49798
|
+
return !procAlive && !hasRunner;
|
|
49800
49799
|
}
|
|
49801
49800
|
|
|
49802
49801
|
// src/tools/registry.ts
|
package/package.json
CHANGED