Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

Commit

Permalink
Adicionada uma condição para não responder mensagem de grupos.
Browse files Browse the repository at this point in the history
  • Loading branch information
leobaldoneto committed Sep 16, 2020
1 parent 3e026e5 commit 126a61d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,11 @@ client.on('ready', () => {
console.log('Cliente pronto!');
});

//Implementar condição para não responder grupos.
client.on('message', async (msg) => {
// Condição para não responder mensagens de grupos
if (typeof msg.author !== 'undefined') {
return;
}
console.log('MESSAGE RECEIVED', msg);
//se estiver em desenvolvimento, só aceita mensagem do Zap admin
if (development) {
Expand Down

0 comments on commit 126a61d

Please sign in to comment.