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 64b2daa + f9f63c5 commit 6ef14d0Copy full SHA for 6ef14d0
src/Conversation.php
@@ -221,7 +221,7 @@ protected function updateStatus($status)
221
public function update()
222
{
223
if ($this->exists()) {
224
- $fields = ['notes' => json_encode($this->notes)];
+ $fields = ['notes' => json_encode($this->notes, JSON_UNESCAPED_UNICODE)];
225
//I can update a conversation whatever the state is
226
$where = ['id' => $this->conversation['id']];
227
if (ConversationDB::updateConversation($fields, $where)) {
0 commit comments