Skip to content

Commit

Permalink
fix(new-releases): use 50000 as a limit
Browse files Browse the repository at this point in the history
  • Loading branch information
rxri authored Aug 6, 2024
1 parent aa6b3ee commit 3d61360
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CustomApps/new-releases/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 3d61360

Please sign in to comment.