Skip to content

Commit

Permalink
Undo changes to redirect_uri default impl
Browse files Browse the repository at this point in the history
  • Loading branch information
cobward committed Aug 2, 2024
1 parent bcede2e commit 998d8d7
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/core/authorization_request/verification/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,7 @@ pub trait RequestVerifier {
decoded_request: &AuthorizationRequestObject,
request_jwt: String,
) -> Result<(), Error> {
println!("[WARNING] 'redirect_uri' client verification not implemented");
// bail!("'redirect_uri' client verification not implemented")
Ok(())
bail!("'redirect_uri' client verification not implemented")
}

/// Performs verification on Authorization Request Objects when `client_id_scheme` is `verifier_attestation`.
Expand Down

0 comments on commit 998d8d7

Please sign in to comment.