diff --git a/src/common/system-ca.ts b/src/common/system-ca.ts index 904ec01b97..22d85e3b42 100644 --- a/src/common/system-ca.ts +++ b/src/common/system-ca.ts @@ -66,7 +66,7 @@ export function getWinRootCA(): Promise { }, onend: () => { resolve(CAs.filter(isCertActive)); - } + }, }); }); } @@ -98,7 +98,7 @@ export async function injectSystemCAs() { console.warn(`[MAC-CA]: Error injecting root CAs from MacOSX. ${error?.message}`); } } - + if (isWindows) { try { const winRootCAs = await getWinRootCA();