|
@@ -817,6 +817,8 @@ class ChatService implements ChatServiceInterface
|
|
|
{
|
|
|
$result = ChatTopic::where(['id' => $data['id']])->get();
|
|
|
if ($result) {
|
|
|
+ $replydata['created_at'] = date('Y-m-d H:i:s');
|
|
|
+ $replydata['updated_at'] = date('Y-m-d H:i:s');
|
|
|
$replydata['content'] = $data['content'];
|
|
|
$replydata['user_id'] = $data['user_id'];
|
|
|
$replydata['topic_id'] = $data['id'];
|