This commit is contained in:
petercooperjr 2024-06-06 08:33:11 -04:00 committed by GitHub
commit e2d5b61e84
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 1 deletions

View File

@ -855,7 +855,11 @@ ACME._postChallenge = function (me, options, kid, auth) {
.catch(transformError); .catch(transformError);
} }
return respondToChallenge(); if (auth.status === 'valid') {
return pollStatus();
} else {
return respondToChallenge();
}
}; };
// options = { domains, claims, challenges } // options = { domains, claims, challenges }