mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
Fix indexId for created playlist video
This commit is contained in:
parent
5c69110658
commit
3f3e52d7ae
1 changed files with 1 additions and 1 deletions
|
@ -5003,7 +5003,7 @@ post "/api/v1/auth/playlists/:plid/videos" do |env|
|
||||||
|
|
||||||
host_url = make_host_url(config, Kemal.config)
|
host_url = make_host_url(config, Kemal.config)
|
||||||
|
|
||||||
env.response.headers["Location"] = "#{host_url}/api/v1/auth/playlists/#{plid}/videos/#{playlist_video.index}"
|
env.response.headers["Location"] = "#{host_url}/api/v1/auth/playlists/#{plid}/videos/#{playlist_video.index.to_u64.to_s(16).upcase}"
|
||||||
env.response.status_code = 201
|
env.response.status_code = 201
|
||||||
playlist_video.to_json(locale, config, Kemal.config, index: playlist.index.size)
|
playlist_video.to_json(locale, config, Kemal.config, index: playlist.index.size)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue