admin/app/common/model/plus/business/chat/Participant.php
@@ -41,7 +41,6 @@
        $existing = $this->where('conversation_id', $conversationId)
            ->where('user_id', $userId)
            ->find();
        var_dump($existing);
        if ($existing) {
            return true;
        }
@@ -56,7 +55,6 @@
            'create_time' => time(),
            'update_time' => time()
        ];
        return $this->save($data);
    }