|
...
|
...
|
@@ -172,8 +172,8 @@ class SyncInquiryProject extends Command |
|
|
|
ProjectServer::useProject($val->id);
|
|
|
|
|
|
|
|
//排除白帽个人服务器项目
|
|
|
|
$seo_type = WebSetting::where('project_id', $val->id)->value('seo_type');
|
|
|
|
if ($seo_type == 2) {
|
|
|
|
$web_setting = WebSetting::where('project_id', $val->id)->first();
|
|
|
|
if (isset($web_setting->seo_type) && $web_setting->seo_type == 2) {
|
|
|
|
DB::disconnect('custom_mysql');
|
|
|
|
continue;
|
|
|
|
}
|
...
|
...
|
|