claude-bridge-cli 1.2.5 → 1.2.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.
Files changed (2) hide show
  1. package/lib/bridge.js +9 -4
  2. package/package.json +1 -1
package/lib/bridge.js CHANGED
@@ -362,11 +362,16 @@ function askClaude(config, { prompt, session_id, images, cwd, plan_mode, allow_t
362
362
  const existing = scanSessionFiles().find(s => s.id === session_id);
363
363
  if (existing) {
364
364
  args.push("--resume", session_id);
365
- // Read original cwd from the first line of the JSONL (Claude stores it there)
365
+ // Scan JSONL for the first event with a cwd field
366
366
  try {
367
- const firstLine = fs.readFileSync(existing.filePath, "utf8").split("\n")[0];
368
- const parsed = JSON.parse(firstLine);
369
- if (parsed.cwd) resumeCwd = parsed.cwd;
367
+ const lines = fs.readFileSync(existing.filePath, "utf8").split("\n");
368
+ for (const line of lines) {
369
+ if (!line) continue;
370
+ try {
371
+ const parsed = JSON.parse(line);
372
+ if (parsed.cwd) { resumeCwd = parsed.cwd; break; }
373
+ } catch {}
374
+ }
370
375
  } catch {}
371
376
  } else {
372
377
  args.push("--session-id", session_id);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-bridge-cli",
3
- "version": "1.2.5",
3
+ "version": "1.2.6",
4
4
  "description": "Use Claude Code from your browser. Runs a local server that connects your browser tools to the Claude CLI.",
5
5
  "main": "lib/bridge.js",
6
6
  "bin": {