A decentralized music tracking and discovery platform built on AT Protocol 🎵

Use artistMbId and releaseMbId keys

+4 -4
+4 -4
apps/api/src/tealfm/index.ts
··· 65 65 trackName: track.name, 66 66 playedTime: track.timestamp, 67 67 artists: track.artist.map((artist) => ({ 68 - artistMbid: artist.mbid, 68 + artistMbId: artist.mbid, 69 69 artistName: artist.name, 70 70 })), 71 - releaseMbid: track.releaseMBID, 71 + releaseMbId: track.releaseMBID, 72 72 releaseName: track.album, 73 73 recordingMbId: track.trackMBID, 74 74 submissionClientAgent: SUBMISSION_CLIENT_AGENT, ··· 106 106 duration, 107 107 playedTime: track.timestamp, 108 108 artists: track.artist.map((artist) => ({ 109 - artistMbid: artist.mbid, 109 + artistMbId: artist.mbid, 110 110 artistName: artist.name, 111 111 })), 112 - releaseMbid: track.releaseMBID, 112 + releaseMbId: track.releaseMBID, 113 113 releaseName: track.album, 114 114 recordingMbId: track.trackMBID, 115 115 submissionClientAgent: SUBMISSION_CLIENT_AGENT,