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

refactor: remove user_id from find_spotify_users return type

+1 -2
+1 -2
crates/spotify/src/lib.rs
··· 708 708 pool: &Pool<Postgres>, 709 709 offset: usize, 710 710 limit: usize, 711 - ) -> Result<Vec<(String, String, String, String, String, String)>, Error> { 711 + ) -> Result<Vec<(String, String, String, String, String)>, Error> { 712 712 let results: Vec<SpotifyTokenWithEmail> = sqlx::query_as( 713 713 r#" 714 714 SELECT * FROM spotify_tokens ··· 738 738 result.email.clone(), 739 739 token, 740 740 result.did.clone(), 741 - result.user_id.clone(), 742 741 result.spotify_app_id.clone(), 743 742 spotify_secret, 744 743 ));