3
3
Fork 0

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

Fechado
Ghost quer aplicar o merge de 1 commits de (excluído):challenge-propagation-delay em master
1 arquivos alterados com 3 adições e 0 exclusões

Ver arquivo

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