diff --git a/src/components/nowPlayingBar/nowPlayingBar.js b/src/components/nowPlayingBar/nowPlayingBar.js index daa2d3bf15..9b2d55c2f9 100644 --- a/src/components/nowPlayingBar/nowPlayingBar.js +++ b/src/components/nowPlayingBar/nowPlayingBar.js @@ -658,6 +658,11 @@ import { appRouter } from '../appRouter'; } function onStateChanged(event, state) { + if (event.type === 'init') { + // skip non-ready state + return; + } + console.debug('nowplaying event: ' + event.type); const player = this;