From b56618196871b4b22233c61c2e74ba4dfcba7c5c Mon Sep 17 00:00:00 2001 From: david Date: Sun, 13 Dec 2020 21:06:13 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E8=BE=85=E7=A7=8D=E5=89=8D?= =?UTF-8?q?=E7=BD=AE=E6=A3=80=E6=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/AutoReseed.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/app/AutoReseed.php b/app/AutoReseed.php index ddc10e7..e41dc34 100644 --- a/app/AutoReseed.php +++ b/app/AutoReseed.php @@ -13,7 +13,7 @@ use IYUU\Library\Table; class AutoReseed { // 版本号 - const VER = '1.10.12'; + const VER = '1.10.13'; // RPC连接 private static $links = []; // 客户端配置 @@ -22,10 +22,8 @@ class AutoReseed private static $sites = []; // 推荐的合作站点 private static $recommend = []; - // 不辅种的站点 'pt','hdchina' + // 不辅种的站点 private static $noReseed = []; - // cookie检查 - private static $cookieCheck = []; // 缓存路径 public static $cacheDir = TORRENT_PATH.'cache'.DS; public static $cacheHash = TORRENT_PATH.'cachehash'.DS; @@ -371,7 +369,7 @@ class AutoReseed // 初始化 if (!empty(self::$sites[$sid]['reseed_check'])) { $reseed_check = explode(',', self::$sites[$sid]['reseed_check']); - array_walk($reseed_check, function (&$v, $k){ + array_walk($reseed_check, function (&$v, $k) { $v = trim($v); }); self::$sites[$sid]['reseed_check'] = $reseed_check;