作者 邓超

es

@@ -149,16 +149,6 @@ trait DbQuery { @@ -149,16 +149,6 @@ trait DbQuery {
149 149
150 $sql = "update `{$table}` set ".dbUpdate($data). " where ".$where; 150 $sql = "update `{$table}` set ".dbUpdate($data). " where ".$where;
151 151
152 - if($table == listsSql::$table){  
153 - if ($data['seen']??''){  
154 - @file_put_contents(LOG_PATH.'/seen.log',print_r([  
155 - $sql,  
156 - $_REQUEST,  
157 - php_sapi_name()  
158 - ],true),FILE_APPEND);  
159 - }  
160 - }  
161 -  
162 $data = $this->getData($data); 152 $data = $this->getData($data);
163 153
164 $query = $this->query([$sql,$data]); 154 $query = $this->query([$sql,$data]);
@@ -480,9 +480,13 @@ class SyncMail { @@ -480,9 +480,13 @@ class SyncMail {
480 Event::call('mail_sync_list',$id, $data); 480 Event::call('mail_sync_list',$id, $data);
481 481
482 }else{ 482 }else{
  483 + // 非ai邮件才更新
  484 + if(!defined('CLI_AI_SYNC_START')){
483 $this->db->update(listsSql::$table,$data,dbWhere(['id'=> $id])); 485 $this->db->update(listsSql::$table,$data,dbWhere(['id'=> $id]));
484 } 486 }
485 487
  488 + }
  489 +
486 //TODO 如果header 头信息里面有2段数据 第二段就作为内容解析 490 //TODO 如果header 头信息里面有2段数据 第二段就作为内容解析
487 if($item->header->body()){ 491 if($item->header->body()){
488 $parseBody = $item->header->body(); 492 $parseBody = $item->header->body();