
Show other playlist item on error
Hello, when player can't play source it will generate onError event. In that event I want to show next playlist item. Player only changes info but does not start playing this new item.
jwplayer("myvideo").on('error', function (message) {
jwplayer("myvideo")
.stop()
.playlistItem(currIndex + 1) // Changes information, like Title and description, still can see exclamation mark
.play(true)
;
});
When doing `.load({file: url})` it's working, but removing all playlists.
Any ideas how to fix that? Using JW v7.2.4