From f04137c472edf6e146864aa429b535affee5d682 Mon Sep 17 00:00:00 2001 From: wucongxing8150 <815046773@qq.com> Date: Tue, 12 Mar 2024 16:42:14 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=A1=A8=E6=98=8E1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Controller/CallBackController.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/Controller/CallBackController.php b/app/Controller/CallBackController.php index 7ea9d72..232bfc4 100644 --- a/app/Controller/CallBackController.php +++ b/app/Controller/CallBackController.php @@ -1924,14 +1924,14 @@ class CallBackController extends AbstractController return $this->TrtcSuccessReturn(); } - if ($order_inquiry_video_records['video_status'] == 3){ + if ($order_inquiry_video_record['video_status'] == 3){ // 已开始通话,音频推流动作不做处理 return $this->TrtcSuccessReturn(); } // 修改视频状态 $params = array(); - $params['records_id'] = $order_inquiry_video_records['records_id']; + $params['records_id'] = $order_inquiry_video_record['records_id']; $data = array(); $data['video_status'] = 3; @@ -2021,6 +2021,7 @@ class CallBackController extends AbstractController return $this->recordingErrorReturn("缺少签名字段"); } + return $this->recordingSuccessReturn(); // 鉴定回调签名 $VideoSafe = new VideoSafe(); $result = $VideoSafe->validateSign($request_params,$Sign);