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

クローズ
Ghost(削除済み):challenge-propagation-delay から master への 1 コミットのマージを希望しています
1個のファイルの変更3行の追加0行の削除

ファイルの表示

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