From f666cba104f39f14d465277a288d9368fbf94adb Mon Sep 17 00:00:00 2001 From: snipe Date: Sat, 14 Jun 2025 12:17:31 +0100 Subject: [PATCH] Fixed RB-3991 - override route for non-existent fieldset Signed-off-by: snipe --- app/Exceptions/Handler.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index e6cc058fce..f544180750 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -145,6 +145,8 @@ class Handler extends ExceptionHandler $route = 'licenses.index'; } elseif ($route === 'customfields.index') { $route = 'fields.index'; + } elseif ($route === 'customfieldsets.index') { + $route = 'fields.index'; } return redirect()