Add data for chapters to JSON endpoint for videos

This commit is contained in:
syeopite 2023-09-20 11:52:07 -07:00
parent 9601de6a24
commit c7e046f903
No known key found for this signature in database
GPG Key ID: A73C186DA3955A1A

View File

@ -218,6 +218,14 @@ module Invidious::JSONify::APIv1
end
end
if !video.chapters.empty?
json.field "chapters" do
json.object do
Invidious::Videos::Chapters.to_json(json, video.chapters, video.automatically_generated_chapters?.as(Bool))
end
end
end
if !video.music.empty?
json.field "musicTracks" do
json.array do