mirror of
https://github.com/certd/certd.git
synced 2026-07-30 01:07:38 +08:00
perf: 支持全自动匹配部署宝塔网站证书
This commit is contained in:
+1
-1
@@ -21,7 +21,7 @@ export class CertInfoWildcardDomainCountFix {
|
||||
},
|
||||
});
|
||||
let fixedCount = 0;
|
||||
for (const item of list) {
|
||||
for (const item of list as any[]) {
|
||||
if (!item.domains) {
|
||||
continue;
|
||||
}
|
||||
|
||||
@@ -112,7 +112,7 @@ export class CommonEabToAcmeAccountFix {
|
||||
return null;
|
||||
}
|
||||
const email = eabAccess.email || `${caType}@common.certd.local`;
|
||||
const exists = await this.accessService.findOne({
|
||||
const exists: any = await this.accessService.findOne({
|
||||
where: {
|
||||
userId: 0,
|
||||
projectId: null,
|
||||
|
||||
Reference in New Issue
Block a user