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

fix: add delay to ensure track is actively playing before publishing

+2
+2
apps/api/src/tealfm/index.ts
··· 22 22 duration: number 23 23 ) { 24 24 try { 25 + // wait 15 seconds to ensure the track is actually being played 26 + await new Promise((resolve) => setTimeout(resolve, 15000)); 25 27 const recentPlays = await getRecentPlays(agent, 5); 26 28 // Check if the track was played in the last 5 plays (verify by MBID and timestamp to avoid duplicates) 27 29 const alreadyPlayed = recentPlays.some((play) => {