Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions src/api/integrations/chatbot/base-chatbot.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -878,13 +878,7 @@
// Skip if session exists but not awaiting user input
if (session && session.status === 'closed') {
return;
}

// Skip if session exists and status is paused
if (session && session.status === 'paused') {
this.logger.warn(`Session for ${remoteJid} is paused, skipping message processing`);
return;
}
}

Check failure on line 881 in src/api/integrations/chatbot/base-chatbot.controller.ts

View workflow job for this annotation

GitHub Actions / check-lint-and-build

Delete `······`

// Merged settings
const mergedSettings = {
Expand Down
Loading