From 5bd8d13e66502e92af10b4462d20c739c139bf46 Mon Sep 17 00:00:00 2001 From: Gmer4Lfe Date: Sat, 30 May 2026 21:16:07 -0400 Subject: [PATCH] Terminal link: use window.location.hostname (local IP) not Tailscale --- Plugin/unraid/pages/partnership.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugin/unraid/pages/partnership.php b/Plugin/unraid/pages/partnership.php index 2245906..f5697ef 100644 --- a/Plugin/unraid/pages/partnership.php +++ b/Plugin/unraid/pages/partnership.php @@ -307,7 +307,7 @@ function _renderActions(nodes, cfg) { const selfNode = nodes.find(n => n.is_me); const remotes = nodes.filter(n => !n.is_me); const hasPartner = remotes.some(n => n.hostname); - const termBase = selfNode && selfNode.ts_ip ? `https://${selfNode.ts_ip}/webterminal/ttyd/` : null; + const termBase = `https://${window.location.hostname}/webterminal/ttyd/`; const termCmd = `bash /mnt/user/appdata/Varaverk/Partnership/partnership_onboard.sh --phase1-only`; let html = '';