作者 邓超

优化同步

@@ -225,7 +225,7 @@ class MailListV2Es extends Base { @@ -225,7 +225,7 @@ class MailListV2Es extends Base {
225 $notinquery = []; 225 $notinquery = [];
226 foreach ($from_not_in_like as $k => $sub) { 226 foreach ($from_not_in_like as $k => $sub) {
227 if($sub){ 227 if($sub){
228 - $notinquery[] = ['match'=>['from.email'=>$sub]]; 228 + $notinquery[] = ['match_phrase'=>['from.email'=>$sub]];
229 } 229 }
230 } 230 }
231 if($notinquery){ 231 if($notinquery){
@@ -544,7 +544,7 @@ class MailListV2Es extends Base { @@ -544,7 +544,7 @@ class MailListV2Es extends Base {
544 $notinquery = []; 544 $notinquery = [];
545 foreach ($from_not_in_like as $k => $sub) { 545 foreach ($from_not_in_like as $k => $sub) {
546 if($sub){ 546 if($sub){
547 - $notinquery[] = ['match'=>['from.email'=>$sub]]; 547 + $notinquery[] = ['match_phrase'=>['from.email'=>$sub]];
548 } 548 }
549 } 549 }
550 if($notinquery){ 550 if($notinquery){