diff --git a/src/routes/Player/ControlBar/PlayPauseButton/PlayPauseButton.js b/src/routes/Player/ControlBar/PlayPauseButton/PlayPauseButton.js index 80183becb..c1b47c5d1 100644 --- a/src/routes/Player/ControlBar/PlayPauseButton/PlayPauseButton.js +++ b/src/routes/Player/ControlBar/PlayPauseButton/PlayPauseButton.js @@ -14,7 +14,7 @@ class PlayPauseButton extends React.Component { } render() { - const icon = this.props.paused ? 'ic_play' : 'ic_pause'; + const icon = this.props.paused === null || this.props.paused ? 'ic_play' : 'ic_pause'; return (