mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-08-14.git
synced 2024-08-15 00:53:20 +00:00
Remove unsupported formats from quality selector
This commit is contained in:
parent
2a4b643539
commit
20c0bff96d
1 changed files with 9 additions and 0 deletions
|
@ -103,6 +103,15 @@ function toggle_comments(target) {
|
|||
body.style.display = '';
|
||||
}
|
||||
};
|
||||
|
||||
var currentSources = player.currentSources();
|
||||
for ( var i = 0; i < currentSources.length; i++ ) {
|
||||
if (player.canPlayType(currentSources[i]["type"].split(";")[0]) === "") {
|
||||
currentSources.splice(i);
|
||||
}
|
||||
}
|
||||
|
||||
player.src(currentSources);
|
||||
</script>
|
||||
|
||||
<div class="h-box">
|
||||
|
|
Loading…
Reference in a new issue