From 5104117af640bc393905713fff2381f3c20c0121 Mon Sep 17 00:00:00 2001 From: Haileyesus Date: Tue, 10 Feb 2026 12:14:03 +0300 Subject: [PATCH] fix: remove unnecessary terminal hyperlink for auth URL --- server/index.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/server/index.js b/server/index.js index 29b4ada..8a2604d 100755 --- a/server/index.js +++ b/server/index.js @@ -1229,14 +1229,6 @@ function handleShellConnection(ws) { url: normalizedUrl, autoOpen })); - - // Emit a clickable OSC 8 hyperlink line so the full URL is clickable in xterm. - const safeUrl = normalizedUrl.replace(/\x07/g, '').replace(/\x1b/g, ''); - const terminalHyperlink = `\x1b]8;;${safeUrl}\x07Open authentication URL\x1b]8;;\x07`; - session.ws.send(JSON.stringify({ - type: 'output', - data: `\r\n\x1b[36mAuthentication URL:\x1b[0m ${terminalHyperlink}\r\n` - })); } };