Skip to content

Commit 8619e32

Browse files
Merge pull request #1928 from josiasmaceda/hotfix/chatbot-not-return-after-human
fix: allowing the chatbot return after the time expires and after human interaction (stopBotFromMe)
2 parents 5015cfb + cf548ee commit 8619e32

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/api/integrations/chatbot/base-chatbot.controller.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -901,12 +901,6 @@ export abstract class BaseChatbotController<BotType = any, BotData extends BaseC
901901
return;
902902
}
903903

904-
// Skip if session exists and status is paused
905-
if (session && session.status === 'paused') {
906-
this.logger.warn(`Session for ${remoteJid} is paused, skipping message processing`);
907-
return;
908-
}
909-
910904
// Merged settings
911905
const mergedSettings = {
912906
...settings,

0 commit comments

Comments
 (0)