Fix indexId for created playlist video

This commit is contained in:
Omar Roth 2019-10-15 22:09:01 -04:00
parent 5c69110658
commit 3f3e52d7ae
No known key found for this signature in database
GPG Key ID: B8254FB7EC3D37F2
1 changed files with 1 additions and 1 deletions

View File

@ -5003,7 +5003,7 @@ post "/api/v1/auth/playlists/:plid/videos" do |env|
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
playlist_video.to_json(locale, config, Kemal.config, index: playlist.index.size)
end