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

fix: temporarily disable album in scrobbleTrack to improve matching

+2 -1
+2 -1
apps/api/src/nowplaying/nowplaying.service.ts
··· 826 826 { 827 827 artist: track.artist.split(",").map((a) => ({ name: a.trim() })), 828 828 name: track.title, 829 - album: track.album, 829 + // temporarily disable album to see if it improves matching 830 + // album: track.album, 830 831 } 831 832 ); 832 833