Add data for chapters to JSON endpoint for videos

This commit is contained in:
syeopite 2023-09-20 11:52:07 -07:00
parent 6bddcea178
commit 2dc17d7409
No known key found for this signature in database
GPG Key ID: A73C186DA3955A1A
1 changed files with 8 additions and 0 deletions

View File

@ -201,6 +201,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