Skip to content

Commit

Permalink
removed unnecessary mut
Browse files Browse the repository at this point in the history
  • Loading branch information
AS1100K committed Aug 11, 2024
1 parent 9f30d2f commit 6b1ec28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azalea-auth/src/auth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ pub async fn get_ms_auth_token(
tokio::time::sleep(std::time::Duration::from_secs(res.interval)).await;

tracing::trace!("Polling to check if user has logged in...");
if let Ok(mut access_token_response) = client
if let Ok(access_token_response) = client
.post(format!(
"https://login.live.com/oauth20_token.srf?client_id={client_id}"
))
Expand Down

0 comments on commit 6b1ec28

Please sign in to comment.