fix: typeof number check and more safety

This commit is contained in:
Fredrik Burmester
2025-05-14 19:37:47 +02:00
parent be20fb0dbb
commit f6e460d97a

View File

@@ -257,7 +257,7 @@ class NotificationService {
const alerts = {
cpu: cpuThreshold !== -1 && cpuUsage > cpuThreshold ? true : false,
memory: memoryThreshold !== -1 && memoryUsage > memoryThreshold ? true : false,
disk: disk?.some(d => diskThreshold !== -1 && d.usage_percent > diskThreshold) ?? false,
disk: disk?.some(d => diskThreshold !== -1 && typeof d?.usage_percent === "number" && d?.usage_percent > diskThreshold) ?? false,
};
const notifications = await this.db.getNotificationsByMonitorId(