Skip to content

Commit

Permalink
fix(rbx_auth): add trailing double slash to auth api as workaround fo…
Browse files Browse the repository at this point in the history
…r roblox incident
  • Loading branch information
blake-mealey committed Oct 12, 2024
1 parent 37ca410 commit b1c53a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mantle/rbx_auth/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ impl RobloxAuth {

async fn get_csrf_token(roblosecurity_cookie: &str) -> Result<HeaderValue, RobloxAuthError> {
let response = Client::new()
.post("https://auth.roblox.com")
.post("https://auth.roblox.com//")
.header(header::COOKIE, roblosecurity_cookie)
.header(header::CONTENT_LENGTH, 0)
.send()
Expand Down

0 comments on commit b1c53a9

Please sign in to comment.