@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.
@@ -290,7 +290,7 @@ var ACPProtocolHandler = class {
290
290
  const p = params ?? {};
291
291
  const sessionId = typeof p.sessionId === "string" ? p.sessionId : null;
292
292
  const loadCwd = typeof p.cwd === "string" ? p.cwd : void 0;
293
- let existing = sessionId ? this.sessions.get(sessionId) : void 0;
293
+ const existing = sessionId ? this.sessions.get(sessionId) : void 0;
294
294
  if (!existing && sessionId && this.store) {
295
295
  const persisted = await this.store.load(sessionId);
296
296
  if (persisted) {