Use proxy url for chapter thumbnails in JSON API

This commit is contained in:
syeopite 2023-09-20 11:54:35 -07:00
parent 2dc17d7409
commit 310825997f
No known key found for this signature in database
GPG Key ID: A73C186DA3955A1A

View File

@ -98,7 +98,7 @@ module Invidious::Videos::Chapters
json.array do
chapter.thumbnails.each do |thumbnail|
json.object do
json.field "url", thumbnail["url"]
json.field "url", URI.parse(thumbnail["url"].as(String)).request_target
json.field "width", thumbnail["width"]
json.field "height", thumbnail["height"]
end