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

已关闭
Ghost 请求将 1 次代码提交从 (已删除): challenge-propagation-delay 合并至 master
共有 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;
};