From 03448361da690eda3f8e5b030fc5a620f167fcd2 Mon Sep 17 00:00:00 2001 From: cclohmar Date: Wed, 5 Aug 2026 14:02:00 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20correct=20go2rtc=20player=20URL=20?= =?UTF-8?q?=E2=80=94=20stream.html=20not=20root?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app.js b/public/app.js index cfeab26..437a676 100644 --- a/public/app.js +++ b/public/app.js @@ -85,7 +85,7 @@ function renderLiveGrid() { if (img) img.src = `/recordings/${cam.name || cam.id}/latest.jpg?t=${Date.now()}`; }, 3000); tile.addEventListener('click', () => { - window.open(`http://${location.hostname}:1984/?src=${cam.id}_sub`, '_blank'); + window.open(`http://${location.hostname}:1984/stream.html?src=${cam.id}_sub`, '_blank'); }); } else { tile.innerHTML = 'No Camera';