Radio is too damn loud, change frontend instead of server
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 1m27s

This commit is contained in:
2026-03-10 21:41:45 +00:00
parent 6bf773487a
commit 0ad7f4e009

View File

@@ -30,7 +30,10 @@ async function checkStream() {
streamLive.value = true; streamLive.value = true;
streamUrl.value = "/radio/stream"; streamUrl.value = "/radio/stream";
if (audio.value) audio.value.load(); if (audio.value) {
audio.value.load();
audio.value.volume = 0.2;
}
} catch (err) { } catch (err) {
streamLive.value = false; streamLive.value = false;
} }