diff --git a/client/src/app.vue b/client/src/app.vue index a150859..668e7a4 100644 --- a/client/src/app.vue +++ b/client/src/app.vue @@ -204,7 +204,9 @@ @Watch('volume', { immediate: true }) onVolume(volume: number) { - this.$accessor.video.setVolume(volume) + if (new URL(location.href).searchParams.has('volume')) { + this.$accessor.video.setVolume(volume) + } } @Watch('hideControls', { immediate: true })