diff --git a/ffplayout/frontend/store/playlist.js b/ffplayout/frontend/store/playlist.js index 39844367..3cd1193f 100644 --- a/ffplayout/frontend/store/playlist.js +++ b/ffplayout/frontend/store/playlist.js @@ -75,7 +75,10 @@ export const actions = { } commit('UPDATE_PLAYLIST', response.data.program) - dispatch('animClock') + + if (process.browser) { + dispatch('animClock') + } } },