Updated MeshCommander and fixes to message dispatch.

This commit is contained in:
Ylian Saint-Hilaire
2019-07-10 14:27:38 -07:00
parent 5e010273e3
commit abe8e97f24
6 changed files with 911 additions and 909 deletions

View File

@@ -261,7 +261,7 @@ var CreateAmtRedirect = function (module, authCookie) {
if (obj.debugmode == 1) { console.log('Send', x); }
var b = new Uint8Array(x.length);
for (var i = 0; i < x.length; ++i) { b[i] = x.charCodeAt(i); }
obj.socket.send(b.buffer);
try { obj.socket.send(b.buffer); } catch (ex) { }
}
}