From f1353cd9a8337b09b464754176bdd7a758bb15cf Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Mon, 27 Apr 2026 13:24:50 +0900 Subject: [PATCH] fix(tmux): use stable fallback server URL Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus --- src/features/tmux-subagent/manager.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/features/tmux-subagent/manager.ts b/src/features/tmux-subagent/manager.ts index 3340fb55d..a8d93ca16 100644 --- a/src/features/tmux-subagent/manager.ts +++ b/src/features/tmux-subagent/manager.ts @@ -72,8 +72,7 @@ export class TmuxSessionManager { this.client = ctx.client this.tmuxConfig = tmuxConfig this.deps = deps - const defaultPort = process.env.OPENCODE_PORT ?? "4096" - const fallbackUrl = `http://localhost:${defaultPort}` + const fallbackUrl = "http://localhost:4096" const rawServerUrl = ctx.serverUrl?.toString() try { if (rawServerUrl) {