diff --git a/client/app/components/ClientRow.vue b/client/app/components/ClientRow.vue index 97dcc08..411095e 100644 --- a/client/app/components/ClientRow.vue +++ b/client/app/components/ClientRow.vue @@ -77,7 +77,7 @@ const audioTrack = computed(() => { const { setGain } = useAudioContext(audioTrack) watch(volume, (volume) => { - if (outputMuted) + if (outputMuted.value) return setGain(volume * 0.01)