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

Configure Feed

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

Fix Spotify apps join condition

+4 -1
+4 -1
apps/api/src/spotify/app.ts
··· 235 235 ), 236 236 }) 237 237 .from(spotifyApps) 238 - .leftJoin(spotifyAccounts, eq(spotifyApps.id, spotifyAccounts.spotifyAppId)) 238 + .leftJoin( 239 + spotifyAccounts, 240 + eq(spotifyApps.spotifyAppId, spotifyAccounts.spotifyAppId), 241 + ) 239 242 .groupBy(spotifyApps.id, spotifyApps.spotifyAppId) 240 243 .having(sql`COUNT(${spotifyAccounts.id}) < 25`); 241 244