forked from midou/invidious
Add caption URL to video info
This commit is contained in:
parent
4c8bb3b293
commit
c166f46b7c
@ -1794,6 +1794,7 @@ get "/api/v1/captions/:id" do |env|
|
|||||||
json.object do
|
json.object do
|
||||||
json.field "label", caption.name.simpleText
|
json.field "label", caption.name.simpleText
|
||||||
json.field "languageCode", caption.languageCode
|
json.field "languageCode", caption.languageCode
|
||||||
|
json.field "url", "/api/v1/captions/#{id}?label=#{URI.escape(caption.name.simpleText)}"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -2354,6 +2355,7 @@ get "/api/v1/videos/:id" do |env|
|
|||||||
json.object do
|
json.object do
|
||||||
json.field "label", caption.name.simpleText
|
json.field "label", caption.name.simpleText
|
||||||
json.field "languageCode", caption.languageCode
|
json.field "languageCode", caption.languageCode
|
||||||
|
json.field "url", "/api/v1/captions/#{id}?label=#{URI.escape(caption.name.simpleText)}"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user