From 8a51f15d65f4da9ff5def16bb49fd88fa5e3a325 Mon Sep 17 00:00:00 2001 From: nuno maduro Date: Fri, 1 May 2026 20:45:51 +0100 Subject: [PATCH] wip --- src/Plugins/Tia/Graph.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Plugins/Tia/Graph.php b/src/Plugins/Tia/Graph.php index 01422a4f..f232ddcf 100644 --- a/src/Plugins/Tia/Graph.php +++ b/src/Plugins/Tia/Graph.php @@ -540,7 +540,10 @@ final class Graph } $file = $result['file'] ?? null; - if ($file === null || $file === '') { + if ($file === null) { + continue; + } + if ($file === '') { continue; }