Remove extra 'next page' button at then end of a playlist

This commit is contained in:
Samantaz Fox
2021-03-23 02:25:47 +00:00
parent 3e88b72316
commit 23e5b6ba72
2 changed files with 8 additions and 1 deletions

View File

@@ -433,6 +433,13 @@ class Invidious::Routes::Playlists < Invidious::Routes::BaseRoute
return error_template(500, ex)
end
page_count = (playlist.video_count / 100).to_i
page_count = 1 if page_count == 0
if page > page_count
return env.redirect "/playlist?list=#{plid}&page=#{page_count}"
end
if playlist.privacy == PlaylistPrivacy::Private && playlist.author != user.try &.email
return error_template(403, "This playlist is private.")
end