We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34f8598 commit 77b55f1Copy full SHA for 77b55f1
src/routes/+page.svelte
@@ -23,7 +23,7 @@
23
if(stats) {
24
// Load API data to cache
25
26
- for(const song of stats.data.songs.slice(config.songRankCount)) {
+ for(const song of stats.data.songs.slice(0, config.songRankCount)) {
27
const artist = await api.queryArtistByName(song.artist);
28
await api.querySongByName(song.title, artist?.id);
29
}
0 commit comments