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

More user groups improvements.

This commit is contained in:
Ylian Saint-Hilaire 2020-01-06 11:54:32 -08:00
parent e1392bcae0
commit b802071dce
3 changed files with 10 additions and 2 deletions

View file

@ -53,7 +53,7 @@ var MeshServerCreateControl = function (domain, authCookie) {
obj.send = function (x) {
if (obj.socket != null && obj.connectstate == 1) {
if (obj.trace) { console.log('SEND', x); }
if (obj.trace && (x.action != 'ping')) { console.log('SEND', x); }
obj.socket.send(JSON.stringify(x));
}
}