Skip to content

Commit

Permalink
fixed redirect_to query parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
Raflos10 committed Jan 27, 2025
1 parent 50e29da commit 3778f66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1046,7 +1046,7 @@ impl AuthClient {
let response = self
.client
.post(&format!("{}{}/recover", self.project_url, AUTH_V1))
.query(&[("email_redirect_to", redirect_to.as_deref())])
.query(&[("redirect_to", redirect_to.as_deref())])
.headers(headers)
.body(body)
.send()
Expand Down

0 comments on commit 3778f66

Please sign in to comment.