Fix: Wrong datatype for avgPing (#3724)

pull/3525/merge
Nelson Chan 7 months ago committed by GitHub
parent 99179c82d7
commit 5b7206f8e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1137,7 +1137,7 @@ class Monitor extends BeanModel {
if (hasClients) {
// Send 24 hour average ping
let data24h = await uptimeCalculator.get24Hour();
io.to(userID).emit("avgPing", monitorID, (data24h.avgPing) ? data24h.avgPing.toFixed(2) : null);
io.to(userID).emit("avgPing", monitorID, (data24h.avgPing) ? Number(data24h.avgPing.toFixed(2)) : null);
// Send 24 hour uptime
io.to(userID).emit("uptime", monitorID, 24, data24h.uptime);

Loading…
Cancel
Save