Skip to content

Commit 4d0c538

Browse files
committed
fix filter
1 parent edebd80 commit 4d0c538

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/api/integrations/chatbot/chatwoot/services/chatwoot.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ export class ChatwootService {
693693
})) as any;
694694
this.logger.verbose(`Contact conversations: ${JSON.stringify(contactConversations)}`);
695695

696-
if (!contactConversations || !contactConversations.payload || contactConversations.payload.length === 0) {
696+
if (!contactConversations || !contactConversations.payload) {
697697
this.logger.error('No conversations found or payload is undefined');
698698
return null;
699699
}

0 commit comments

Comments
 (0)