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

[api] ignore jwt expiration

+2 -2
+1 -1
apps/web/src/hooks/useFeed.tsx
··· 9 9 client.get("/xrpc/app.rocksky.scrobble.getScrobbles", { 10 10 params: { limit }, 11 11 }), 12 - // refetchInterval: 5000, 12 + refetchInterval: 7000, 13 13 select: (res) => res.data.scrobbles || [], 14 14 }); 15 15
+1 -1
apps/web/src/hooks/useNowPlaying.tsx
··· 24 24 "/xrpc/app.rocksky.feed.getNowPlayings", 25 25 { params: { size: 7 } } 26 26 ), 27 - // refetchInterval: 5000, 27 + refetchInterval: 6000, 28 28 select: (res) => res.data.nowPlayings || [], 29 29 });