mirror of
https://github.com/certd/certd.git
synced 2026-06-28 06:27:31 +08:00
fix: 修复Farcdn证书有效期错误的问题
This commit is contained in:
@@ -153,8 +153,8 @@ export class FarcdnAccess extends BaseAccess {
|
||||
serverName: oldCert.serverName || certReader.getMainDomain(),
|
||||
commonNames: [certReader.getMainDomain()],
|
||||
dnsNames: certReader.getAltNames(),
|
||||
timeBeginAt: detail.notBefore,
|
||||
timeEndAt: detail.notAfter,
|
||||
timeBeginAt: detail.notBefore.getTime(),
|
||||
timeEndAt: detail.notAfter.getTime(),
|
||||
name: oldCert.name|| certReader.buildCertName(),
|
||||
description:oldCert.description||""
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user