A decentralized music tracking and discovery platform built on AT Protocol 🎵 rocksky.app
spotify atproto lastfm musicbrainz scrobbling listenbrainz

Reduce pagination delay from 100ms to 20ms

+1 -1
+1 -1
tap/src/main.ts
··· 236 236 page++; 237 237 238 238 if (hasMore && page % 5 === 0) { 239 - await new Promise((resolve) => setTimeout(resolve, 100)); 239 + await new Promise((resolve) => setTimeout(resolve, 20)); 240 240 } 241 241 } 242 242