This commit is contained in:
david 2023-03-19 23:01:18 +08:00
parent a5d728b691
commit f62c765d7d
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ use app\domain\Config as domainConfig;
*/
function IYUU_VERSION(): string
{
return '2.1.17';
return '2.1.18';
}
/**

View File

@ -1012,7 +1012,7 @@ class AutoReseed
{
//未适配辅种签名的站点,需要排除
$exclude = ['zhuque', 'audiences', 'hdvideo'];
return !in_array($site, $exclude);
return !($exclude && in_array($site, $exclude));
}
/**