From 920305432b8dbf0bc867ff378f7d2623a0f0ef1b Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Fri, 5 Jul 2024 20:31:19 +0200 Subject: [PATCH] feat: Improve internal notification message for early fraud warning webhook --- app/Http/Controllers/Webhook/Stripe.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/Webhook/Stripe.php b/app/Http/Controllers/Webhook/Stripe.php index c3e393bf9..9c3af7359 100644 --- a/app/Http/Controllers/Webhook/Stripe.php +++ b/app/Http/Controllers/Webhook/Stripe.php @@ -80,7 +80,7 @@ public function events(Request $request) 'stripe_invoice_paid' => false, ]); } - send_internal_notification("Early fraud warning created Refunded, subscription canceled. Charge: {$charge}, id: {$id}, pi: {$pi}, customer: {$customerId}, subscription: {$subscriptionId}"); + send_internal_notification("Early fraud warning created Refunded, subscription canceled. Charge: {$charge}, id: {$id}, pi: {$pi}"); break; case 'checkout.session.completed': $clientReferenceId = data_get($data, 'client_reference_id');