Skip to content

Commit

Permalink
Merge pull request #91 from twrecked/fix-muted
Browse files Browse the repository at this point in the history
Fixed muted value.
  • Loading branch information
twrecked committed Mar 4, 2021
2 parents 299a123 + beee439 commit 8d25ee8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions dist/hass-aarlo.js
Original file line number Diff line number Diff line change
Expand Up @@ -1127,13 +1127,12 @@ class AarloGlance extends LitElement {
}
}

getGlobalState( config ) {
getGlobalState( _config ) {
return {
autoplay: _value( config.autoPlay, false ),
dash: null,
hls: null,
libraryCamera: -1,
isMuted: _value(config.isMuted, false),
isMuted: this.gc.isMuted,
poster: '',
recording: null,
stream: null,
Expand Down

0 comments on commit 8d25ee8

Please sign in to comment.