Merge pull request #6983 from home-assistant/fix-mnuted

Fix muted on video
This commit is contained in:
Joakim Sørensen 2020-09-14 11:29:14 +02:00 committed by GitHub
commit 92ed14c0e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,7 +61,7 @@ class HaHLSPlayer extends LitElement {
return html`
<video
?autoplay=${this.autoPlay}
?muted=${this.muted}
.muted=${this.muted}
?playsinline=${this.playsInline}
?controls=${this.controls}
@loadeddata=${this._elementResized}