blun-king-cli 9.1.436 → 9.1.437
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/blun.mjs +3 -1
- package/package.json +1 -1
package/blun.mjs
CHANGED
|
@@ -508348,8 +508348,10 @@ var SessionEventHandler = class {
|
|
|
508348
508348
|
this.host.sendChannelTurnStatus?.(message);
|
|
508349
508349
|
}
|
|
508350
508350
|
abortWatchdogLoop(snapshot) {
|
|
508351
|
-
const message =
|
|
508351
|
+
const message = snapshot.reason === "idle_timeout" ? uiText("sessionEvent.watchdog.timeout", {
|
|
508352
508352
|
minutes: snapshot.idleMinutes,
|
|
508353
|
+
tool: snapshot.lastToolName
|
|
508354
|
+
}) : uiText("sessionEvent.watchdog.aborted", {
|
|
508353
508355
|
tool: snapshot.lastToolName,
|
|
508354
508356
|
repetitions: snapshot.failedRepetitions
|
|
508355
508357
|
});
|