Fix propagationDelay not being set for dns-01 challenges #47

Chiuso
Ghost vorrebbe unire 1 commit da (deleted):challenge-propagation-delay a master
1 ha cambiato i file con 3 aggiunte e 0 eliminazioni

Vedi File

@ -183,6 +183,9 @@ P._normalizeChallenge = function(name, ch) {
}
gch.get = wrappy(ch.get);
}
if (ch.propagationDelay) {
gch.propagationDelay = ch.propagationDelay;
}
return gch;
};