Add speed param to playlist redirect

This commit is contained in:
Omar Roth 2018-10-09 08:08:52 -05:00
parent e2c15468e0
commit 2dbe151ceb

View file

@ -185,6 +185,9 @@ function get_playlist() {
<% if params[:autoplay] %> <% if params[:autoplay] %>
+ "&autoplay=1" + "&autoplay=1"
<% end %> <% end %>
<% if params[:speed] %>
+ "&speed=1"
<% end %>
); );
}); });
} }