fix(terminal): prevent infinite reconnect loop on Windows hosts (#336)

This commit is contained in:
lifu963
2026-03-21 21:45:40 +08:00
committed by GitHub
parent ae39fc5e77
commit 895654ddf6
12 changed files with 165 additions and 21 deletions
+1 -1
View File
@@ -97,7 +97,7 @@ export class TerminalManager {
create(terminalId: string, cols: number, rows: number): void {
if (process.platform === 'win32') {
this.emitError(terminalId, 'Terminal is not supported on Windows.')
this.emitError(terminalId, 'Remote terminal is not supported on Windows yet.')
return
}