diff --git a/src/reporter.rs b/src/reporter.rs index 3f1f403..58c9550 100644 --- a/src/reporter.rs +++ b/src/reporter.rs @@ -632,13 +632,12 @@ impl DetailsReporter { (None, None) } else { // Try to find AKID from captures (for AWS) - let akid_from_captures: Option = rm - .m - .groups - .captures - .iter() - .find(|c| c.name == Some("AKID") || c.name == Some("akid")) - .map(|c| c.raw_value().to_string()); + let akid_from_captures: Option = + rm.m.groups + .captures + .iter() + .find(|c| c.name == Some("AKID") || c.name == Some("akid")) + .map(|c| c.raw_value().to_string()); // Try to extract AKID from validation response body (fallback for AWS) let akid_from_body = extract_akid_from_validation_body(&rm.validation_response_body);