From 0ac03a6bfe9b56f6313f041d4827ba95a76dbb23 Mon Sep 17 00:00:00 2001 From: Myron Blair Date: Sat, 30 May 2026 03:59:23 +0000 Subject: [PATCH] Fix scanNetwork: remove undefined userAddr causing ReferenceError --- public_html/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public_html/index.html b/public_html/index.html index 18ef74e..3a0c44f 100644 --- a/public_html/index.html +++ b/public_html/index.html @@ -1303,7 +1303,7 @@ async function scanNetwork() { const data = await api('network/scan'); const count = data.count ?? 0; const msg = data.queued - ? `Network scan dispatched to PVE1 probe, ${userAddr}. Currently showing ${count} active device${count!==1?'s':''} — panel will refresh with live results in approximately 40 seconds.` + ? `Network scan dispatched to PVE1 probe, Sir. Currently showing ${count} active device${count!==1?'s':''} — panel will refresh with live results in approximately 40 seconds.` : `Showing last known network data: ${count} active device${count!==1?'s':''} on 10.48.200.0/24. PVE1 probe scans automatically every 3 minutes.`; addMessage('jarvis', msg); speak(count + ' devices online.');