From 6e722f58330633127b37563414a1a446dc90cdfd Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 4 Apr 2021 15:53:17 +0200 Subject: [PATCH] Ignore 404's. --- app/Exceptions/Handler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index b6f527c6e5..66f970984e 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -27,7 +27,6 @@ declare(strict_types=1); namespace FireflyIII\Exceptions; use ErrorException; -use Exception; use FireflyIII\Jobs\MailError; use Illuminate\Auth\AuthenticationException; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; @@ -52,6 +51,7 @@ class Handler extends ExceptionHandler = [ AuthenticationException::class, LaravelValidationException::class, + NotFoundHttpException::class, ]; /**