You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Phase 1 (headed bootstrap) wrote fresh cf_clearance to disk via
`launchPersistentContext(browserData)`, but Phase 2 used
`chromium.launch()` + `getOrCreateContext()` — a non-persistent
context — so the fresh clearance was never loaded. Only stale vault
cookies were injected.
Fix: Phase 2 now uses `launchPersistentContext(activePaths.browserData)`
so it inherits the disk cookies from Phase 1 automatically.
To avoid overwriting the fresh cf_clearance with the stale vault copy,
inject vault cookies ONLY for cookie names not already present on disk.
Remove now-unused `getOrCreateContext` import from client.ts.
Refs issue #5
0 commit comments