Merge pull request #1990 from SamantazFox/patch-1

Fix for issue #1989
このコミットが含まれているのは:
TheFrenchGhosty 2021-04-08 06:24:44 +00:00 committed by GitHub
コミット 18b4b141d9
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更2行の追加1行の削除

ファイルの表示

@ -437,7 +437,8 @@ end
def get_playlist_videos(db, playlist, offset, locale = nil, continuation = nil)
# Show empy playlist if requested page is out of range
if offset >= playlist.video_count
# (e.g, when a new playlist has been created, offset will be negative)
if offset >= playlist.video_count || offset < 0
return [] of PlaylistVideo
end