Fix, nodelist segment doubling up when generating segment
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 37s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 1m33s
Create Docker Image / Final Docker Image Manifest (push) Successful in 11s

This commit is contained in:
Deon George 2024-12-01 21:17:22 +11:00
parent e1ed446f3e
commit 6743e5bf73

View File

@ -149,7 +149,7 @@ class NodelistSegment extends Dynamic
if ($oo->system_id == $so->id) if ($oo->system_id == $so->id)
continue; continue;
$result->push($this->generate($oo) ?: $this->entry($oo)); $result->push($this->entry($oo));
} }
return $result->join("\n"); return $result->join("\n");