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

Closed
Ghost wants to merge 1 commits from (deleted):challenge-propagation-delay into master
1 changed files with 3 additions and 0 deletions

View File

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