修复 主机不会被删除的 bug

This commit is contained in:
iVampireSP.com 2023-02-05 01:11:44 +08:00
parent d3b5572076
commit 9cccf1046e
No known key found for this signature in database
GPG Key ID: 2F7B001CA27A8132

View File

@ -44,7 +44,7 @@ public function handle(): void
$host = $this->host;
// 忽略 unavailable 状态的 host
if (! $this->pass_unavailable && $host->status === 'unavailable') {
if ($this->pass_unavailable && $host->status === 'unavailable') {
return;
}