[WIP] proof of concept ListenBrainz compatible API
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

comment lol

+1
+1
src/index.ts
··· 227 227 228 228 for (const listen of body.payload) { 229 229 const { track_name, artist_name, release_name } = listen.track_metadata; 230 + // TODO: could just make the server set this. 230 231 if (!listen.listened_at) { 231 232 return c.json({ error: "Missing listened_at" }, 400); 232 233 }