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: add filter for beta users in get_spotify_token and get_spotify_tokens queries

+2
+1
crates/scrobbler/src/repo/spotify_token.rs
··· 12 12 SELECT * FROM spotify_tokens 13 13 LEFT JOIN spotify_accounts ON spotify_tokens.user_id = spotify_accounts.user_id 14 14 LEFT JOIN users ON spotify_accounts.user_id = users.xata_id 15 + WHERE is_beta_user = true 15 16 WHERE users.did = $1 16 17 "#, 17 18 )
+1
crates/webscrobbler/src/repo/spotify_token.rs
··· 35 35 SELECT * FROM spotify_tokens 36 36 LEFT JOIN spotify_accounts ON spotify_tokens.user_id = spotify_accounts.user_id 37 37 LEFT JOIN users ON spotify_accounts.user_id = users.xata_id 38 + WHERE is_beta_user = true 38 39 LIMIT $1 39 40 "#, 40 41 )