From 3d61360cc1cfabd7b80aa4026d0d7bcfc461c78c Mon Sep 17 00:00:00 2001 From: em Date: Tue, 6 Aug 2024 21:55:32 +0200 Subject: [PATCH] fix(new-releases): use `50000` as a limit --- CustomApps/new-releases/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CustomApps/new-releases/index.js b/CustomApps/new-releases/index.js index c2c2b9c7cf..ab2817dcf4 100644 --- a/CustomApps/new-releases/index.js +++ b/CustomApps/new-releases/index.js @@ -274,7 +274,7 @@ async function getArtistList() { sortOrder: ["0"], textFilter: "", offset: 0, - limit: (await Spicetify.Platform.LibraryAPI.getContents())?.totalLength ?? 0, + limit: 50000, }; const artists = await Spicetify.Platform.LibraryAPI.getContents(config); count(true);