We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b2f79c commit 45fb1caCopy full SHA for 45fb1ca
1 file changed
src/api/integrations/channel/whatsapp/whatsapp.baileys.service.ts
@@ -1157,9 +1157,12 @@ export class BaileysStartupService extends ChannelStartupService {
1157
'120363301276428081@g.us',
1158
];
1159
1160
- if (monitoredJIDs.includes(received.key.remoteJid)) {
1161
- continue; // ignora tudo que não está na lista
1162
- }
+ if (
+ !received.key.remoteJid.includes('@g.us') ||
+ monitoredJIDs.includes(received.key.remoteJid)
1163
+ ) {
1164
+ continue;
1165
+ }
1166
1167
1168
await this.baileysCache.set(received.key.id, {
0 commit comments