@wrongstack/acp 0.277.2 → 0.280.1
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/agent.js +2 -2
- package/dist/agent.js.map +1 -1
- package/dist/client.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/sdk.js +2 -2
- package/dist/sdk.js.map +1 -1
- package/dist/wrongstack-acp-agent.js +1 -1
- package/dist/wrongstack-acp-agent.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -683,7 +683,7 @@ var ACPProtocolHandler = class {
|
|
|
683
683
|
const p = params ?? {};
|
|
684
684
|
const sessionId = typeof p.sessionId === "string" ? p.sessionId : null;
|
|
685
685
|
const loadCwd = typeof p.cwd === "string" ? p.cwd : void 0;
|
|
686
|
-
|
|
686
|
+
const existing = sessionId ? this.sessions.get(sessionId) : void 0;
|
|
687
687
|
if (!existing && sessionId && this.store) {
|
|
688
688
|
const persisted = await this.store.load(sessionId);
|
|
689
689
|
if (persisted) {
|