Small bugfixes
Deploy / Build and Deploy (push) Failing after 2m7s

This commit is contained in:
2026-08-05 16:54:15 +02:00
parent fd8bd7215a
commit 2c8a13a293
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ namespace PamhagenSysCtrl.Helpers.Pipeline {
var start = points.First();
var path = new Path(start, []);
foreach (var end in points.Skip(1)) {
if (valid != null && !valid(start)) {
if (valid != null && start != points.First() && !valid(start)) {
return null;
} else if (GetPath(start, end, valid, visited: [.. path.Hops.Select(h => h.Node)]) is not Path p) {
return null;