From 4783b166d96cfca0a263501eaa277fdaa1884018 Mon Sep 17 00:00:00 2001 From: Jakub Theimer <5587309+theimerj@users.noreply.github.com> Date: Tue, 10 Dec 2024 13:39:38 +0100 Subject: [PATCH] fail after all attempts to find order fail --- src/Jobs/Webhooks/WebhookHandler.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Jobs/Webhooks/WebhookHandler.php b/src/Jobs/Webhooks/WebhookHandler.php index 4ae4935..fd3d653 100644 --- a/src/Jobs/Webhooks/WebhookHandler.php +++ b/src/Jobs/Webhooks/WebhookHandler.php @@ -82,7 +82,7 @@ protected function findOrder(PaymentIntentContract $paymentIntent): Order return $order; } catch (Throwable $e) { - $this->fail($e); + // $this->fail($e); } try { @@ -90,7 +90,7 @@ protected function findOrder(PaymentIntentContract $paymentIntent): Order return $order; } catch (Throwable $e) { - $this->fail($e); + // $this->fail($e); } try { @@ -98,7 +98,7 @@ protected function findOrder(PaymentIntentContract $paymentIntent): Order return $order; } catch (Throwable $e) { - $this->fail($e); + // $this->fail($e); } $this->fail(new ModelNotFoundException('Order not found.'));