Decrement currentSource length on splice

pull/3/head
Omar Roth 7 years ago
parent 20c0bff96d
commit a8db5aaed8

@ -108,6 +108,7 @@ var currentSources = player.currentSources();
for ( var i = 0; i < currentSources.length; i++ ) {
if (player.canPlayType(currentSources[i]["type"].split(";")[0]) === "") {
currentSources.splice(i);
i--;
}
}

Loading…
Cancel
Save