From 34f64dba097e8391a3edbdac8dc87d3e5b9df2c6 Mon Sep 17 00:00:00 2001 From: Stefan Etringer Date: Mon, 30 Jun 2025 08:25:45 +0000 Subject: [PATCH] put xterm into the binary --- static/start-interactive.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/start-interactive.js b/static/start-interactive.js index b9ac4b0..d212418 100644 --- a/static/start-interactive.js +++ b/static/start-interactive.js @@ -27,8 +27,8 @@ function getQueryParam(name) { function makeWsUrl() { const proxyIp = getQueryParam("ip"); // "10.0.0.42" if you came via /proxyAgent - const proxyPort = getQueryParam("port"); // "8080" - const usingProxy = proxyIp && proxyPort; // truthy only in that case + const proxyPort = getQueryParam("port"); + const usingProxy = proxyIp && proxyPort; // true only in that case if (usingProxy) { // Build ws(s):///proxyAgent/terminal?ip=…&port=…