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

Fixed newListener event to propagate error event

This commit is contained in:
Bryan Roe 2021-07-14 12:00:06 -07:00
parent 5e39f4b3b5
commit eacef6f848
2 changed files with 460 additions and 8 deletions

View file

@ -117,7 +117,11 @@ function lme_heci(options) {
emitterUtils.createEvent('notify');
emitterUtils.createEvent('bind');
this.on('newListener', function (name, func) { if (name == 'connect' && this._LME._connected == true) { func.call(this);} });
this.on('newListener', function (name, func)
{
if (name == 'connect' && this._LME._connected == true) { func.call(this); }
if (name == 'error' && this._LME._error !=null) { func.call(this, this._LME._error); }
});
if ((options != null) && (options.debug == true)) { lme_port_offset = -100; } // LMS debug mode
var heci = require('heci');
@ -126,10 +130,11 @@ function lme_heci(options) {
this._ObjectID = "lme";
this._LME = heci.create();
this._LME._connected = false;
this._LME._error = null;
this._LME.descriptorMetadata = "amt-lme";
this._LME._binded = {};
this._LME.LMS = this;
this._LME.on('error', function (e) { this.LMS.emit('error', e); });
this._LME.on('error', function (e) { this._error = e; this.LMS.emit('error', e); });
this._LME.on('connect', function ()
{
this._connected = true;