We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8fbf7fa + a81f2ab commit 9f96c67Copy full SHA for 9f96c67
1 file changed
src/apps/chatwoot/consumers/inbox/message_created.ts
@@ -80,7 +80,7 @@ export class MessageHandler {
80
async handle(body: any) {
81
const chatId = await LookupAndCheckChatId(this.session, body);
82
const message = body;
83
- if (message.content_type != 'text') {
+ if (message.content_type != 'text' && message.content_type != 'input_csat') {
84
this.logger.info(
85
`Message content type not supported. Content type: ${message.content_type}`,
86
);
0 commit comments