From bb308f8bcc779295ed38cec7cfdfdec149183beb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20=C5=A0ediv=C3=BD?= Date: Sun, 28 Nov 2021 14:33:43 +0100 Subject: [PATCH] hide mute overley on unmute. --- client/src/components/video.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/video.vue b/client/src/components/video.vue index 91edcc3..afe5d2d 100644 --- a/client/src/components/video.vue +++ b/client/src/components/video.vue @@ -342,6 +342,7 @@ if (this._video) { this._video.muted = muted this.startsMuted = muted + if (!muted) this.mutedOverlay = false } } @@ -519,7 +520,6 @@ unmute() { this.$accessor.video.setMuted(false) - this.mutedOverlay = false } toggleControl() {