diff --git a/service/app/command/SpiderMt.php b/service/app/command/SpiderMt.php index 861c0c55..a8c08fb2 100644 --- a/service/app/command/SpiderMt.php +++ b/service/app/command/SpiderMt.php @@ -377,7 +377,11 @@ class SpiderMt extends Command if (!empty($oldMobile)) { $admin_id = $oldMobile->admin_id; } else { - $admin_id = $this->poolUser($order->orderStatus, $order->category_desc); + try { + $admin_id = $this->poolUser($order->orderStatus, $order->category_desc); + } catch (\Exception $exception) { + continue; + } } if (empty($admin_id)) return null;