From 3d0b712d3f6b9f172b5d16744012d96cd1ccabc7 Mon Sep 17 00:00:00 2001 From: Max Date: Sat, 17 May 2025 00:48:37 +1000 Subject: [PATCH] Use the parent (illuminate) handler to determine whether we should report the throwable --- src/Exception/Handler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Exception/Handler.php b/src/Exception/Handler.php index 804df96..9ec34ba 100644 --- a/src/Exception/Handler.php +++ b/src/Exception/Handler.php @@ -91,7 +91,7 @@ public function report(Throwable $throwable) */ public function shouldReport(Throwable $e) { - return true; + return $this->parentHandler->shouldReport($e); } /**