@wrongstack/acp 0.277.1 → 0.280.0

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/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
- let existing = sessionId ? this.sessions.get(sessionId) : void 0;
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) {