fix: no response evolution bot

This commit is contained in:
Davidson Gomes 2024-09-05 20:52:46 -03:00
parent a9e4860a77
commit c20a3b643f
2 changed files with 5 additions and 3 deletions

View File

@ -11,6 +11,8 @@
* Missing autoCreate chatwoot in instance create
* Fixed bugs in the frontend, on the event screens
* Fixed use chatwoot with evolution channel
* Fix chatwoot reply quote with Cloud API
* Use exchange name from .env on RabbitMQ
# 2.1.0 (2024-08-26 15:33)

View File

@ -194,6 +194,8 @@ export class EvolutionBotService {
const message = await this.sendMessageToBot(instance, session, bot, remoteJid, pushName, content);
if (!message) return;
await this.sendMessageWhatsApp(instance, remoteJid, session, settings, message);
return;
@ -299,9 +301,7 @@ export class EvolutionBotService {
const message = await this.sendMessageToBot(instance, session, bot, remoteJid, pushName, content);
if (!message) {
return;
}
if (!message) return;
await this.sendMessageWhatsApp(instance, remoteJid, session, settings, message);