This commit is contained in:
2025-11-08 15:34:08 +08:00
parent fa139208a2
commit 55b496f585

View File

@@ -984,9 +984,14 @@ pub(crate) async fn get_certificate(
None => return Ok(GurtResponse::not_found().with_string_body("Challenge not found")),
};
let csr_pem = csr_pem.ok_or_else(|| {
GurtResponse::bad_request().with_string_body("CSR not found for this challenge")
})?;
let csr_pem = match csr_pem {
Some(csr) => csr,
None => {
return Ok(
GurtResponse::bad_request().with_string_body("CSR not found for this challenge")
)
}
};
if chrono::Utc::now() > expires_at {
return Ok(GurtResponse::bad_request().with_string_body("Challenge expired"));