mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-07-14 01:41:24 -06:00
fix: no response evolution bot
This commit is contained in:
parent
a9e4860a77
commit
c20a3b643f
@ -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)
|
||||
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user