Removed AV status event until MeshAgent fix.

This commit is contained in:
Ylian Saint-Hilaire 2019-10-25 14:51:22 -07:00
parent 9d6a8343bb
commit 1c7c46b89a
2 changed files with 2 additions and 2 deletions

View File

@ -1334,7 +1334,7 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
} }
if (command.av) { if (command.av) {
if (!device.av) { device.av = []; } if (!device.av) { device.av = []; }
if ((command.av != null) && (JSON.stringify(device.av) != JSON.stringify(command.av))) { changes.push('AV status'); device.av = command.av; change = 1; log = 1; } if ((command.av != null) && (JSON.stringify(device.av) != JSON.stringify(command.av))) { /*changes.push('AV status');*/ device.av = command.av; change = 1; log = 1; }
} }
if ((command.users != null) && (device.users != command.users)) { device.users = command.users; change = 1; } // Don't save this to the db. if ((command.users != null) && (device.users != command.users)) { device.users = command.users; change = 1; } // Don't save this to the db.

View File

@ -1,6 +1,6 @@
{ {
"name": "meshcentral", "name": "meshcentral",
"version": "0.4.3-c", "version": "0.4.3-e",
"keywords": [ "keywords": [
"Remote Management", "Remote Management",
"Intel AMT", "Intel AMT",