@kendoo.agentdesk/agentdesk 0.20.5 → 0.20.6
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/cli/daemon.mjs +1 -1
- package/package.json +1 -1
package/cli/daemon.mjs
CHANGED
|
@@ -465,7 +465,7 @@ export async function runDaemon() {
|
|
|
465
465
|
// Clear active session BEFORE sending session:end — this prevents
|
|
466
466
|
// the orchestrator's onEvent callback from sending a duplicate
|
|
467
467
|
activeSession = null;
|
|
468
|
-
sendBuffered(sessionId, { type: "session:end", duration, steps: 0, inputTokens: 0, outputTokens: 0 });
|
|
468
|
+
sendBuffered(sessionId, { type: "session:end", duration, steps: 0, inputTokens: 0, outputTokens: 0, status: "stopped" });
|
|
469
469
|
}
|
|
470
470
|
}
|
|
471
471
|
|