From 32be18bef09bced684b06c0f117bcd733f9d1f76 Mon Sep 17 00:00:00 2001 From: Mick Grove Date: Sun, 1 Feb 2026 22:32:00 -0800 Subject: [PATCH] updated alibaba rule --- src/reporter.rs | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) 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);