adding shrines

This commit is contained in:
2025-11-26 14:06:30 +00:00
parent e176163cbd
commit ac01842f81
7 changed files with 52 additions and 26 deletions

View File

@@ -24,9 +24,7 @@ const checkStream = async () => {
streamLive.value = true;
streamUrl.value = "/radio/" + streamMount.value;
if (audio.value) {
audio.value.load(); // reload audio if it was offline before
}
if (audio.value) audio.value.load(); // reload audio if it was offline before
}
} catch (err) {
streamLive.value = false;
@@ -40,3 +38,5 @@ onMounted(() => {
setInterval(checkStream, 10000);
});
</script>
<style scoped></style>