From a1f865c1fdce26cd07b4d5ef69e31f5750a55469 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Fri, 26 Sep 2025 13:17:21 +0200 Subject: [PATCH] feat(application): add normalizeWatchPaths method to improve watch path handling --- app/Models/Application.php | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/app/Models/Application.php b/app/Models/Application.php index 51abd60d6..836bb21c7 100644 --- a/app/Models/Application.php +++ b/app/Models/Application.php @@ -1728,16 +1728,29 @@ public static function globToRegex(string $pattern): string return '#^'.$regex.'$#'; } + public function normalizeWatchPaths(): void + { + if (is_null($this->watch_paths)) { + return; + } + + $normalized = $this->parseWatchPaths($this->watch_paths); + if ($normalized !== $this->watch_paths) { + $this->watch_paths = $normalized; + $this->save(); + } + } + public function isWatchPathsTriggered(Collection $modified_files): bool { if (is_null($this->watch_paths)) { return false; } - $this->watch_paths = $this->parseWatchPaths($this->watch_paths); - $this->save(); + + $this->normalizeWatchPaths(); + $watch_paths = collect(explode("\n", $this->watch_paths)); - // If no valid patterns after filtering, don't trigger if ($watch_paths->isEmpty()) { return false; }