add check for volume parameter in URL before setting volume (#372)

This commit is contained in:
FapFapDragon
2024-03-10 08:43:30 -04:00
committed by GitHub
parent 798bf579c0
commit db6f9c957e

View File

@ -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 })