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 teal.fm status datetime format

mmattbtw 250e3bb2 e70f996f

+2 -2
+2 -2
apps/api/src/tealfm/index.ts
··· 114 114 recordingMbId: track.trackMBID, 115 115 submissionClientAgent: SUBMISSION_CLIENT_AGENT, 116 116 }; 117 - const nowSec = Math.floor(Date.now() / 1000); 118 - const expirySec = nowSec + 10 * 60; // 10 minutes from now 117 + const nowSec = new Date(Date.now()).toISOString(); 118 + const expirySec = new Date(Date.now() + 10 * 60 * 1000).toISOString(); // 10 minutes from now 119 119 const record: Status.Record = { 120 120 $type: "fm.teal.alpha.actor.status", 121 121 item,