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
Prev Previous commit
Next Next commit
Update src/api/integrations/chatbot/chatwoot/services/chatwoot.servic…
…e.ts

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
  • Loading branch information
KokeroO and sourcery-ai[bot] authored Oct 19, 2025
commit adbe1079d5bf7749ae7231fc2e90256246c6fd58
Original file line number Diff line number Diff line change
Expand Up @@ -2051,7 +2051,7 @@ export class ChatwootService {
? `**${formattedPhoneNumber} - ${participantName}:**\n\n${bodyMessage}`
: `**${formattedPhoneNumber} - ${participantName}:**`;
} else {
content = bodyMessage ? bodyMessage : '';
content = bodyMessage || '';
}

const send = await this.sendData(
Expand Down
Loading