fix: 修复dns.la无法申请证书的bug

This commit is contained in:
xiaojunnuo
2025-03-24 09:37:32 +08:00
parent 5cccb21175
commit 90b045af6d
2 changed files with 41 additions and 46 deletions
@@ -144,11 +144,9 @@ export class DnslaDnsProvider extends AbstractDnsProvider<DnslaRecord> {
const res = await this.doRequestApi(url, {
domainId: domainId,
type: 16,
host: fullRecord,
host: fullRecord.replace(`.${domain}`, ''),
data: value,
ttl: 60,
weight:1,
preference:1,
});
return res.data;