put xterm into the binary

This commit is contained in:
Stefan Etringer 2025-06-30 08:25:45 +00:00
parent 4f0e5cdd79
commit 34f64dba09
1 changed files with 2 additions and 2 deletions

View File

@ -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)://<main-server>/proxyAgent/terminal?ip=…&port=…