From af48548e81d9e595e048b46742b5aef19fe4353e Mon Sep 17 00:00:00 2001 From: James Cole Date: Sat, 2 Mar 2024 19:20:54 +0100 Subject: [PATCH] Fix https://github.com/firefly-iii/firefly-iii/issues/8608 --- app/Exceptions/GracefulNotFoundHandler.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Exceptions/GracefulNotFoundHandler.php b/app/Exceptions/GracefulNotFoundHandler.php index 2f9ca2abf1..2874404d21 100644 --- a/app/Exceptions/GracefulNotFoundHandler.php +++ b/app/Exceptions/GracefulNotFoundHandler.php @@ -117,6 +117,7 @@ class GracefulNotFoundHandler extends ExceptionHandler return redirect(route('tags.index')); case 'categories.show': + case 'categories.edit': case 'categories.show.all': $request->session()->reflash();