diff --git a/src/Conversation.php b/src/Conversation.php index 146ecc9e8..80473fc46 100644 --- a/src/Conversation.php +++ b/src/Conversation.php @@ -219,7 +219,7 @@ protected function updateStatus($status) public function update() { if ($this->exists()) { - $fields = ['notes' => json_encode($this->notes)]; + $fields = ['notes' => json_encode($this->notes, JSON_UNESCAPED_UNICODE)]; //I can update a conversation whatever the state is $where = ['id' => $this->conversation['id']]; if (ConversationDB::updateConversation($fields, $where)) {