fix: 修复某些情况下报没有匹配到任何校验方式的bug

This commit is contained in:
xiaojunnuo
2026-03-29 00:13:44 +08:00
parent df012dec90
commit fe02ce7b64

View File

@@ -256,7 +256,7 @@ export class AcmeService {
} }
if (providers.domainsVerifyPlan) { if (providers.domainsVerifyPlan) {
//按照计划执行 //按照计划执行
const domainVerifyPlan = providers.domainsVerifyPlan[origFullDomain]; const domainVerifyPlan = providers.domainsVerifyPlan[origFullDomain] || providers.domainsVerifyPlan[fullDomain];
if (domainVerifyPlan) { if (domainVerifyPlan) {
if (domainVerifyPlan.type === "dns") { if (domainVerifyPlan.type === "dns") {
checkIpChallenge("dns"); checkIpChallenge("dns");