From d13a610f5a48101aa01161e2ab5fb3009195b569 Mon Sep 17 00:00:00 2001 From: david Date: Wed, 5 Oct 2022 16:26:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=EF=BC=9A=E4=BA=8B=E4=BB=B6?= =?UTF-8?q?=E7=9B=91=E5=90=AC=E5=99=A8=EF=BC=8C=E7=9B=91=E5=90=AC=E8=AF=B7?= =?UTF-8?q?=E6=B1=82=E6=9C=8D=E5=8A=A1=E5=99=A8=E8=BE=85=E7=A7=8D=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=EF=BC=8C=E8=BF=94=E5=9B=9E=E5=8F=AF=E8=BE=85=E7=A7=8D?= =?UTF-8?q?=E7=9A=84infoHash?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Reseed/AutoReseed.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Reseed/AutoReseed.php b/src/Reseed/AutoReseed.php index 9a738a9..b98ae5a 100644 --- a/src/Reseed/AutoReseed.php +++ b/src/Reseed/AutoReseed.php @@ -537,6 +537,10 @@ class AutoReseed self::$EventDispatcher->dispatch($event); //事件内允许处理可辅种哈希 $data = $event->getInfoHashResponse(); + if (empty($data)) { + echo "【" . $clientValue['_config']['name'] . "】 本次分组未查询到可辅种数据" . PHP_EOL . PHP_EOL; + return; + } // 遍历当前客户端可辅种数据 self::selfClientReseed($data, $hashString, $clientKey);