mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
Fix name of playlist resource
This commit is contained in:
parent
1ab04638e3
commit
d8b7c0750a
1 changed files with 2 additions and 2 deletions
|
@ -2834,7 +2834,7 @@ get "/api/v1/playlists/:plid" do |env|
|
|||
response = JSON.build do |json|
|
||||
json.object do
|
||||
json.field "title", playlist.title
|
||||
json.field "id", playlist.id
|
||||
json.field "playlistId", playlist.id
|
||||
|
||||
json.field "author", playlist.author
|
||||
json.field "authorId", playlist.ucid
|
||||
|
@ -2852,7 +2852,7 @@ get "/api/v1/playlists/:plid" do |env|
|
|||
videos.each do |video|
|
||||
json.object do
|
||||
json.field "title", video.title
|
||||
json.field "id", video.id
|
||||
json.field "videoId", video.id
|
||||
|
||||
json.field "author", video.author
|
||||
json.field "authorId", video.ucid
|
||||
|
|
Loading…
Reference in a new issue