1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-03-09 15:40:18 +00:00

Rolled back MongoDB fast bulk operations until more testing is done.

This commit is contained in:
Ylian Saint-Hilaire 2021-01-27 02:23:36 -08:00
parent 2f4d584c83
commit 027810259d
31 changed files with 8657 additions and 213 deletions

View file

@ -9037,10 +9037,8 @@
}
if (hardware.agentvers != null) {
if (hardware.agentvers.compileTime) {
try {
var d = Date.parse(hardware.agentvers.compileTime)
x += addDetailItem("Compile time", printDateTime(new Date(d)));
} catch (ex) {}
var d = Date.parse(hardware.agentvers.compileTime)
x += addDetailItem("Compile time", isNaN(d)?hardware.agentvers.compileTime:printDateTime(new Date(d)));
}
}
if (x != '') { sections.push({ name: "Mesh Agent", html: x, img: 'meshagent64.png'}); }