chore: guard around tracks access

This commit is contained in:
Cory Dransfeldt 2023-10-07 11:16:51 -07:00
parent 9aabe19b8f
commit 06ca81b903

View file

@ -46,7 +46,7 @@ module.exports = async function () {
})
.then((data) => data.json())
.catch()
res = [...res, ...tracks['data']]
res = tracks['data'].length ? [...res, ...tracks['data']] : [...res]
CURRENT_PAGE++
}