Player HTML5 error handling fix

This commit is contained in:
drigato 2015-04-10 16:06:19 -04:00
parent c80d437601
commit 1d79f13716
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@
if (musesPlayer.playerMode == "auto") {
var nextAvailableStream = musesPlayer.getNextAvailableStream();
var audio = $(MRP.html.audio);
audio.src = nextAvailableStream["url"];;
audio[0].src = nextAvailableStream["url"];;
audio[0].load();
audio[0].play();
} else {