mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-08-14.git
synced 2024-08-15 00:53:20 +00:00
Add better error for invalid playlists
This commit is contained in:
parent
5bdd8327d4
commit
1d9c6f63e1
2 changed files with 7 additions and 4 deletions
|
@ -390,9 +390,8 @@ get "/playlist" do |env|
|
|||
page = env.params.query["page"]?.try &.to_i?
|
||||
page ||= 1
|
||||
|
||||
playlist = fetch_playlist(plid)
|
||||
|
||||
begin
|
||||
playlist = fetch_playlist(plid)
|
||||
videos = fetch_playlist_videos(plid, page, playlist.video_count)
|
||||
rescue ex
|
||||
error_message = ex.message
|
||||
|
@ -2823,9 +2822,9 @@ get "/api/v1/playlists/:plid" do |env|
|
|||
page = env.params.query["page"]?.try &.to_i?
|
||||
page ||= 1
|
||||
|
||||
playlist = fetch_playlist(plid)
|
||||
|
||||
|
||||
begin
|
||||
playlist = fetch_playlist(plid)
|
||||
videos = fetch_playlist_videos(plid, page, playlist.video_count)
|
||||
rescue ex
|
||||
error_message = {"error" => "Playlist is empty"}.to_json
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue