mirror of
https://github.com/iv-org/invidious
synced 2024-11-10 21:23:34 +01:00
Don't remove unsupported sources
This commit is contained in:
parent
be601a7584
commit
791f216a45
@ -137,18 +137,6 @@ player.markers({
|
|||||||
player.currentTime(<%= params[:video_start] %>);
|
player.currentTime(<%= params[:video_start] %>);
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<% if !params[:listen] %>
|
|
||||||
var currentSources = player.currentSources();
|
|
||||||
for (var i = 0; i < currentSources.length; i++) {
|
|
||||||
if (player.canPlayType(currentSources[i]["type"].split(";")[0]) === "") {
|
|
||||||
currentSources.splice(i);
|
|
||||||
i--;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
player.src(currentSources);
|
|
||||||
<% end %>
|
|
||||||
|
|
||||||
player.volume(<%= params[:volume].to_f / 100 %>);
|
player.volume(<%= params[:volume].to_f / 100 %>);
|
||||||
player.playbackRate(<%= params[:speed] %>);
|
player.playbackRate(<%= params[:speed] %>);
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
Reference in New Issue
Block a user