Skip to content
This repository was archived by the owner on Mar 14, 2026. It is now read-only.

Commit 3446513

Browse files
committed
fixup!: issues
1 parent e68b3cd commit 3446513

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

crates/core/src/auth/xbox.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,14 @@ async fn xbl_internal(
6767
"Failed to send request to xbox".to_string(),
6868
));
6969
};
70+
71+
println!("Text: {:?}", response.status());
72+
7073
let text = response
7174
.text()
7275
.await
7376
.map_err(|_| AuthErrors::ParseError("Failed to pass text from xbox".to_string()))?;
7477

75-
println!("Text: {}", text);
76-
7778
let std::result::Result::Ok(token) = serde_json::from_str::<XblOutput>(&text) else {
7879
return Err(AuthErrors::ParseError(
7980
"Failed to pass text to json".to_string(),

0 commit comments

Comments
 (0)