1
0
mirror of https://github.com/iv-org/invidious.git synced 2025-02-25 20:29:48 +05:30

API: Fix URL for vtt subtitles ()

For 'fmt=vtt' to work, the 'fmt' parameter needs to be replaced
in the original caption api URL.

No associated open issue
This commit is contained in:
Samantaz Fox 2024-07-21 13:55:24 +02:00
commit 5a12005b48
No known key found for this signature in database
GPG Key ID: F42821059186176E

@ -141,7 +141,11 @@ module Invidious::Routes::API::V1::Videos
end
end
else
webvtt = YT_POOL.client &.get("#{url}&fmt=vtt").body
uri = URI.parse(url)
query_params = uri.query_params
query_params["fmt"] = "vtt"
uri.query_params = query_params
webvtt = YT_POOL.client &.get(uri.request_target).body
if webvtt.starts_with?("<?xml")
webvtt = caption.timedtext_to_vtt(webvtt)