Fix for issue in logs

This fix address the issue described here: https://github.com/louislam/uptime-kuma/issues/1024
pull/1169/head
Joseph Benguira 2 years ago committed by GitHub
parent fe0bce268d
commit 13acdd4c65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -60,7 +60,9 @@ class Prometheus {
}
try {
monitor_cert_days_remaining.set(this.monitorLabelValues, tlsInfo.certInfo.daysRemaining);
if ( tlsInfo.certInfo != null ){
monitor_cert_days_remaining.set(this.monitorLabelValues, tlsInfo.certInfo.daysRemaining);
}
} catch (e) {
console.error(e);
}

Loading…
Cancel
Save