worked with a domain, yay
This commit is contained in:
parent
19cc513174
commit
330e0e7832
|
@ -2317,7 +2317,7 @@ ACME._setChallengesAll = function (me, options) {
|
|||
function setNext() {
|
||||
var authUrl = setAuths.shift();
|
||||
var claim = claims.shift();
|
||||
if (!authUrl) { return; }
|
||||
if (!authUrl) { return Promise.resolve(); }
|
||||
|
||||
// var domain = options.domains[i]; // claim.identifier.value
|
||||
|
||||
|
@ -2390,7 +2390,7 @@ ACME._finalizeOrder = function (me, options) {
|
|||
if (me.debug) { console.debug('[acme-v2.js] pollCert:'); }
|
||||
return ACME._jwsRequest(me, {
|
||||
options: options
|
||||
, url: options.order.finalize
|
||||
, url: options.order.finalizeUrl
|
||||
, protected: { kid: options._kid }
|
||||
, payload: Enc.binToBuf(payload)
|
||||
}).then(function (resp) {
|
||||
|
|
|
@ -444,7 +444,7 @@
|
|||
steps[4].submit = function () {
|
||||
console.log('Congrats! Auto advancing...');
|
||||
|
||||
window.alert("An error happened in the final step, but it's not your fault. Email aj@rootprojects.org and let him know.");
|
||||
steps[i]();
|
||||
};
|
||||
|
||||
steps[5] = function () {
|
||||
|
|
Loading…
Reference in New Issue