|
@@ -71,7 +71,7 @@ class Match extends Api
|
|
|
|
|
|
//客服不收钱
|
|
|
$kefu_ids = config('site.kefu_user_ids');
|
|
|
- if(in_array($to_user_id,explode(',',$kefu_ids))){
|
|
|
+ if(in_array($to_user_id,explode(',',$kefu_ids)) || in_array($this->auth->id,explode(',',$kefu_ids))){
|
|
|
$rs = [
|
|
|
'get_jewel_value' => 0,
|
|
|
];
|
|
@@ -226,7 +226,7 @@ class Match extends Api
|
|
|
|
|
|
//客服不收钱
|
|
|
$kefu_ids = config('site.kefu_user_ids');
|
|
|
- if(in_array($to_user_id,explode(',',$kefu_ids))){
|
|
|
+ if(in_array($to_user_id,explode(',',$kefu_ids)) || in_array($this->auth->id,explode(',',$kefu_ids))){
|
|
|
$rs = [
|
|
|
'get_jewel_value' => 0,
|
|
|
];
|
|
@@ -379,7 +379,7 @@ class Match extends Api
|
|
|
|
|
|
//客服不收钱
|
|
|
$kefu_ids = config('site.kefu_user_ids');
|
|
|
- if(in_array($to_user_id,explode(',',$kefu_ids))){
|
|
|
+ if(in_array($to_user_id,explode(',',$kefu_ids)) || in_array($this->auth->id,explode(',',$kefu_ids))){
|
|
|
$rs = [
|
|
|
'get_jewel_value' => 0,
|
|
|
];
|