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

Add Authorization header to getFeed requests

Attach Bearer token from localStorage to feed API calls when a token
exists

+5
+5
apps/web/src/api/feed.ts
··· 95 95 limit, 96 96 cursor, 97 97 }, 98 + headers: { 99 + Authorization: localStorage.getItem("token") 100 + ? `Bearer ${localStorage.getItem("token")}` 101 + : undefined, 102 + }, 98 103 }); 99 104 100 105 if (response.status !== 200) {