Grab all playlists instead of 100

This commit is contained in:
Preston 2020-10-06 17:38:38 -04:00
parent 1ddbd87c1c
commit 7219aa3bd6
1 changed files with 1 additions and 1 deletions

View File

@ -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)