Add playlist and start time to the resolve url

このコミットが含まれているのは:
Brahim Hadriche 2023-10-26 17:24:53 -04:00
コミット 85a5bbd696
1個のファイルの変更2行の追加0行の削除

ファイルの表示

@ -175,6 +175,8 @@ module Invidious::Routes::API::V1::Misc
json.object do
json.field "ucid", sub_endpoint["browseId"].as_s if sub_endpoint["browseId"]?
json.field "videoId", sub_endpoint["videoId"].as_s if sub_endpoint["videoId"]?
json.field "playlistId", sub_endpoint["playlistId"].as_s if sub_endpoint["playlistId"]?
json.field "startTimeSeconds", sub_endpoint["startTimeSeconds"].as_s if sub_endpoint["startTimeSeconds"]?
json.field "params", params.try &.as_s
json.field "pageType", pageType
end