feat: change status message

This commit is contained in:
Pedro Lopez
2020-02-08 01:32:15 -04:00
parent f2b286a319
commit edc2c7022d
3 changed files with 15 additions and 0 deletions

View File

@@ -331,6 +331,16 @@ class Client extends EventEmitter {
return chatId._serialized;
}
/**
* Sets the current user's status message
* @param {string} status New status message
*/
async setStatus(status) {
await this.pupPage.evaluate(async status => {
return await window.Store.Wap.sendSetStatus(status);
}, status);
}
}
module.exports = Client;