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

Minor MeshCommander fix

This commit is contained in:
Ylian Saint-Hilaire 2019-04-25 17:25:06 -07:00
parent 58e5f87cf3
commit ac6fb0612a
2 changed files with 3 additions and 3 deletions

View file

@ -456,8 +456,8 @@ module.exports.CreateAmtRedirect = function (module, domain, user, webserver, me
obj.xxSend = function (x) {
if (obj.redirTrace) { console.log("REDIR-SEND(" + x.length + "): " + new Buffer(x, "binary").toString('hex'), typeof x); }
//obj.Debug("Send(" + x.length + "): " + webserver.common.rstr2hex(x));
obj.forwardclient.write(x); // FIXES CIRA
//obj.forwardclient.write(new Buffer(x, "binary"));
//obj.forwardclient.write(x); // FIXES CIRA
obj.forwardclient.write(new Buffer(x, "binary"));
}
obj.Send = function (x) {