|
@@ -569,11 +569,12 @@ class Tvindex extends Api
|
|
|
$rt = httpRequest($url, 'POST', $content);
|
|
|
file_put_contents('bofang.txt',$id.'_'.$rt.PHP_EOL, FILE_APPEND);
|
|
|
if (!$rt) {
|
|
|
- $this->error('同步失败');
|
|
|
+ //$this->error('同步失败');
|
|
|
}
|
|
|
$rt = json_decode($rt, true);
|
|
|
- if ($rt['code'] != 0) {
|
|
|
- $this->error('同步失败');
|
|
|
+
|
|
|
+ if (isset($rt['code']) && $rt['code'] != 0) {
|
|
|
+ //$this->error('同步失败');
|
|
|
}
|
|
|
|
|
|
$this->success('同步成功');
|