docs: devlog #012 + known-issues 3건 + VSIX v0.4.3 빌드 아티팩트

This commit is contained in:
Variet Worker
2026-03-17 10:48:09 +09:00
parent 9523d1328e
commit 1bb54eb820
7 changed files with 54 additions and 9 deletions

View File

@@ -361,8 +361,11 @@ export class WSBridgeClient {
this.logFn(`[WS] Auth failed: ${reason}`);
// Clear session token if it was rejected
this.sessionToken = '';
// MUST set shouldReconnect=false BEFORE _cleanup(), because _cleanup()
// closes the WS → triggers close event → _onDisconnect() → _scheduleReconnect().
// Without this, auth failures cause infinite reconnect loops.
this.shouldReconnect = false;
this._cleanup();
// Don't reconnect on auth failure (needs manual fix)
this.handlers.onError?.(`Auth failed: ${reason}`);
break;
}