add disconnect reason

This commit is contained in:
Pedro Lopez
2020-02-09 00:53:00 -04:00
parent 64ed2c125b
commit d1dba0f4c0
2 changed files with 4 additions and 3 deletions

View File

@@ -206,8 +206,9 @@ class Client extends EventEmitter {
/**
* Emitted when the client has been disconnected
* @event Client#disconnected
* @param {WAState} reason state that caused the disconnect
*/
this.emit(Events.DISCONNECTED);
this.emit(Events.DISCONNECTED, state);
this.destroy();
}
});