diff --git a/modules/menus/media/components/timebar/index.ts b/modules/menus/media/components/timebar/index.ts index 0acf62d..06b73ee 100644 --- a/modules/menus/media/components/timebar/index.ts +++ b/modules/menus/media/components/timebar/index.ts @@ -26,7 +26,7 @@ const Bar = (): BoxWidget => { self.poll(1000, () => { const foundPlayer = getPlayerInfo(); - if (foundPlayer.play_back_status === 'Playing') { + if (foundPlayer?.play_back_status === 'Playing') { update(self, foundPlayer); updateTooltip(self, foundPlayer); }