We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ddbaf23 + 24c3393 commit f0c6300Copy full SHA for f0c6300
src/api/integrations/channel/whatsapp/whatsapp.baileys.service.ts
@@ -1349,7 +1349,10 @@ export class BaileysStartupService extends ChannelStartupService {
1349
}
1350
1351
1352
- this.logger.log(messageRaw);
+ if (messageRaw.key.remoteJid?.includes('@lid') && messageRaw.key.remoteJidAlt) {
1353
+ messageRaw.key.remoteJid = messageRaw.key.remoteJidAlt;
1354
+ }
1355
+ console.log(messageRaw);
1356
1357
this.sendDataWebhook(Events.MESSAGES_UPSERT, messageRaw);
1358
0 commit comments