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

Configure Feed

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

fix: ensure createdAt field is consistently set to current ISO date for artist, album, and song records

+1 -1
+1 -1
apps/api/src/nowplaying/nowplaying.service.ts
··· 372 372 const existingScrobble = await ctx.client.db.scrobbles 373 373 .filter({ 374 374 "user_id.did": userDid, 375 - timestamp: dayjs.unix(track.timestamp).toDate(), 375 + timestamp: dayjs.unix(track.timestamp).toISOString(), 376 376 }) 377 377 .getFirst(); 378 378