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

닫힘
Ghost "(deleted):challenge-propagation-delay 에서 master 로 1 commits 를 머지하려 합니다"
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;
};