This commit is contained in:
Owen
2025-08-29 15:39:06 -07:00
parent 8891d6239f
commit e659f0e75d
2 changed files with 6 additions and 6 deletions

View File

@@ -10,7 +10,7 @@ export async function getValidCertificatesForDomainsHybrid(domains: Set<string>)
Array<{
id: number;
domain: string;
wildcard: boolean;
wildcard: boolean | null;
certFile: string | null;
keyFile: string | null;
expiresAt: Date | null;
@@ -69,7 +69,7 @@ export async function getValidCertificatesForDomains(domains: Set<string>): Prom
Array<{
id: number;
domain: string;
wildcard: boolean;
wildcard: boolean | null;
certFile: string | null;
keyFile: string | null;
expiresAt: Date | null;