hide mute overley on unmute.

This commit is contained in:
Miroslav Šedivý 2021-11-28 14:33:43 +01:00
parent 8153f352f8
commit bb308f8bcc

View File

@ -342,6 +342,7 @@
if (this._video) { if (this._video) {
this._video.muted = muted this._video.muted = muted
this.startsMuted = muted this.startsMuted = muted
if (!muted) this.mutedOverlay = false
} }
} }
@ -519,7 +520,6 @@
unmute() { unmute() {
this.$accessor.video.setMuted(false) this.$accessor.video.setMuted(false)
this.mutedOverlay = false
} }
toggleControl() { toggleControl() {