mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 12:08:01 +00:00
fix: Fix issue null is not iterable (#7521)
This commit is contained in:
@@ -1052,7 +1052,7 @@ export default {
|
|||||||
|
|
||||||
// Retrieve the email of the current conversation's sender
|
// Retrieve the email of the current conversation's sender
|
||||||
const conversationContact = this.currentChat?.meta?.sender?.email || '';
|
const conversationContact = this.currentChat?.meta?.sender?.email || '';
|
||||||
let cc = [...emailAttributes.cc] || [];
|
let cc = emailAttributes.cc ? [...emailAttributes.cc] : [];
|
||||||
let to = [];
|
let to = [];
|
||||||
|
|
||||||
// there might be a situation where the current conversation will include a message from a third person,
|
// there might be a situation where the current conversation will include a message from a third person,
|
||||||
|
|||||||
Reference in New Issue
Block a user