diff --git a/PlayerCore/src/spotify.rs b/PlayerCore/src/spotify.rs index 9257dda..33dda26 100644 --- a/PlayerCore/src/spotify.rs +++ b/PlayerCore/src/spotify.rs @@ -50,7 +50,8 @@ impl Spotify { pub async fn new(sink_rx: Receiver<()>) -> Arc> { let session_config = SessionConfig::default(); let player_config = PlayerConfig::default(); - let credentials = Credentials::with_password("***REMOVED***", "***REMOVED***"); + // TODO: use env var for this, to be specified in the Xcode side somehow? + let credentials = Credentials::with_password("", ""); println!("Connecting..."); let session = Session::connect(session_config, credentials, None)