This commit is contained in:
Alex Holliday
2026-01-09 15:58:31 -08:00
parent b24339f232
commit bdb07220ed
@@ -1,4 +1,4 @@
const fetchMonitorCertificate = async (sslChecker, monitor) => {
const fetchMonitorCertificate = async (sslChecker: any, monitor: any): Promise<any> => {
const monitorUrl = new URL(monitor.url);
const hostname = monitorUrl.hostname;
const cert = await sslChecker(hostname);