优化辅种前置检查

This commit is contained in:
david
2020-12-13 21:06:13 +08:00
parent 60b4939aee
commit b566181968

View File

@ -13,7 +13,7 @@ use IYUU\Library\Table;
class AutoReseed class AutoReseed
{ {
// 版本号 // 版本号
const VER = '1.10.12'; const VER = '1.10.13';
// RPC连接 // RPC连接
private static $links = []; private static $links = [];
// 客户端配置 // 客户端配置
@ -22,10 +22,8 @@ class AutoReseed
private static $sites = []; private static $sites = [];
// 推荐的合作站点 // 推荐的合作站点
private static $recommend = []; private static $recommend = [];
// 不辅种的站点 'pt','hdchina' // 不辅种的站点
private static $noReseed = []; private static $noReseed = [];
// cookie检查
private static $cookieCheck = [];
// 缓存路径 // 缓存路径
public static $cacheDir = TORRENT_PATH.'cache'.DS; public static $cacheDir = TORRENT_PATH.'cache'.DS;
public static $cacheHash = TORRENT_PATH.'cachehash'.DS; public static $cacheHash = TORRENT_PATH.'cachehash'.DS;
@ -371,7 +369,7 @@ class AutoReseed
// 初始化 // 初始化
if (!empty(self::$sites[$sid]['reseed_check'])) { if (!empty(self::$sites[$sid]['reseed_check'])) {
$reseed_check = explode(',', 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); $v = trim($v);
}); });
self::$sites[$sid]['reseed_check'] = $reseed_check; self::$sites[$sid]['reseed_check'] = $reseed_check;