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

@@ -160,7 +160,7 @@ client.on('message_revoke_me', async (msg) => {
console.log(msg.body); // message before it was deleted. console.log(msg.body); // message before it was deleted.
}); });
client.on('disconnected', () => { client.on('disconnected', (reason) => {
console.log('Client was logged out'); console.log('Client was logged out', reason);
}); });

View File

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