1
0
mirror of https://github.com/iv-org/invidious.git synced 2025-01-10 06:49:26 -05:00

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

Decode title from download widget
This commit is contained in:
Samantaz Fox 2021-12-01 17:29:04 +01:00 committed by GitHub
commit e5557b515e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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