Skip to content

Commit

Permalink
ARI: allow for unknown certid
Browse files Browse the repository at this point in the history
  • Loading branch information
webprofusion-chrisc committed Oct 4, 2024
1 parent 0442af0 commit 860b1f3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Certify.Providers/ACME/Anvil/AnvilACMEProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2082,6 +2082,11 @@ public async Task<StatusMessage> RevokeCertificate(ILog log, ManagedCertificate

public async Task<RenewalInfo> GetRenewalInfo(string certificateId)
{
if (string.IsNullOrEmpty(certificateId))
{
return null;
}

var info = await _acme.GetRenewalInfo(certificateId);

if (info != null)
Expand Down

0 comments on commit 860b1f3

Please sign in to comment.