diff --git a/src/more-infos/more-info-media_player.html b/src/more-infos/more-info-media_player.html index 007ae23930..419d9039ad 100644 --- a/src/more-infos/more-info-media_player.html +++ b/src/more-infos/more-info-media_player.html @@ -65,9 +65,9 @@ @@ -295,8 +295,8 @@ return !isOff && hasMedia; } - computePlaybackControlIcon() { - if (this.isPlaying) { + computePlaybackControlIcon(isPlaying) { + if (isPlaying) { return this.supportsPause ? 'mdi:pause' : 'mdi:stop'; } return this.supportsPlay ? 'mdi:play' : null;