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. 3
      plugins.js

3
plugins.js

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

Loading…
Cancel
Save