Skip to content

Commit

Permalink
fix: remove deprecated call
Browse files Browse the repository at this point in the history
  • Loading branch information
divarvel committed Aug 20, 2024
1 parent cc138ad commit e75a7e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/inspect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ pub fn handle_inspect_inner(inspect: &Inspect) -> Result<InspectionResults> {

if let Some(key_from) = public_key_from {
let key = read_public_key_from(&key_from)?;
let sig_result = biscuit.check_signature(|_| key);
let sig_result = biscuit.verify(key);
signatures_check = Some(sig_result.is_ok());

if let Ok(biscuit) = sig_result {
Expand Down

0 comments on commit e75a7e3

Please sign in to comment.