I’m sorry for my newbie question - I’m not familar with redux. I would like to set the playtime of the player after initialization with something like this:
window
.podlovePlayer("#app", "fixtures/episode.json", "fixtures/config.json")
.then(store => {
store.dispatch({
type: "PLAYER_UPDATE_PLAYTIME",
payload: 60000
});
});
But it doesn’t work. What am I doing wrong here?