Merge pull request #2684 from iv-org/SamantazFox-patch-2

Decode title from download widget
pull/2695/head
Samantaz Fox 3 years ago committed by GitHub
commit e5557b515e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -240,7 +240,7 @@ module Invidious::Routes::VideoPlayback
download_widget = JSON.parse(env.params.query["download_widget"])
id = download_widget["id"].as_s
title = download_widget["title"].as_s
title = URI.decode_www_form(download_widget["title"].as_s)
if label = download_widget["label"]?
return env.redirect "/api/v1/captions/#{id}?label=#{label}&title=#{title}"

Loading…
Cancel
Save