Support replying directly to messages

This commit is contained in:
Pedro Lopez
2019-02-17 21:50:28 -04:00
parent 6442469437
commit 812e3dc7a7
2 changed files with 35 additions and 1 deletions

View File

@@ -19,7 +19,12 @@ client.on('ready', () => {
client.on('message', (msg) => {
console.log('MESSAGE RECEIVED', msg);
if (msg.body == 'ping') {
if (msg.body == 'ping reply') {
// Send a new message as a reply to the current one
msg.reply('pong');
} else if (msg.body == 'ping') {
// Send a new message to the same chat
client.sendMessage(msg.from, 'pong');
}
})