From 7219aa3bd6026db48cdc4a0e1f78dc335673cf08 Mon Sep 17 00:00:00 2001 From: Preston Date: Tue, 6 Oct 2020 17:38:38 -0400 Subject: [PATCH] Grab all playlists instead of 100 --- src/renderer/store/modules/ytdl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/store/modules/ytdl.js b/src/renderer/store/modules/ytdl.js index 8cfabbb76..1d1ac0462 100644 --- a/src/renderer/store/modules/ytdl.js +++ b/src/renderer/store/modules/ytdl.js @@ -116,7 +116,7 @@ const actions = { return new Promise((resolve, reject) => { console.log(playlistId) console.log('Getting playlist info please wait...') - ytpl(playlistId, { limit: 0 }).then((result) => { + ytpl(playlistId, { limit: 'Infinity' }).then((result) => { resolve(result) }).catch((err) => { reject(err)