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

Cerrada
Ghost desea fusionar 1 commits de (eliminado):challenge-propagation-delay en master
Se han modificado 1 ficheros con 3 adiciones y 0 borrados

Ver fichero

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