作者 邓超

解析时多标题多出的空格

... ... @@ -973,6 +973,7 @@ class Home extends Base {
}
if($data){
$data['subject'] = str_replace("\n ",'',$data['subject']);
$data['uuid'] = get_email_uuid($data['subject'],$data['udate'],$data['from'],$data['to'],$data['size']);
$data['description'] = @html_entity_decode($data['description']??'', ENT_COMPAT, 'UTF-8');
... ...
... ... @@ -269,6 +269,8 @@ class HomeEs extends Base {
$v = $v['_source'];
$v['id'] = $v['uuid'];
$v['subject'] = str_replace("\n ",'',$v['subject']);
$v['from_name'] = $v['from']['name']??'';
$v['from'] = $v['from']['email']??'';
... ...
... ... @@ -252,6 +252,8 @@ class MailListV2Es extends Base {
$v = $v['_source'];
$v['id'] = $v['uuid'];
$v['subject'] = str_replace("\n ",'',$v['subject']);
$v['from_name'] = $v['from']['name']??'';
$v['from'] = $v['from']['email']??'';
... ...