From fbd5215669e66deaaa082c186f49ee5ca2b4d7ca Mon Sep 17 00:00:00 2001 From: Alex X Date: Wed, 26 Nov 2025 11:23:28 +0300 Subject: [PATCH] Add custom title to stream page #1957 --- www/stream.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/www/stream.html b/www/stream.html index d924d037..90797ef2 100644 --- a/www/stream.html +++ b/www/stream.html @@ -60,6 +60,8 @@ video.src = new URL('api/ws?src=' + encodeURIComponent(streams[i]), location.href); document.body.appendChild(video); } + + document.title = streams.join('/') + ' - go2rtc';