Decrement currentSource length on splice

このコミットが含まれているのは:
Omar Roth 2018-04-10 21:54:23 -05:00
コミット a8db5aaed8
1個のファイルの変更1行の追加0行の削除

ファイルの表示

@ -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--;
}
}