From cd2d1d690dde7586dbd2260590e8a75914e374d8 Mon Sep 17 00:00:00 2001 From: Lars Kusch Date: Mon, 16 Jan 2023 15:40:28 +0100 Subject: [PATCH] More fixes --- app/PaymentDrivers/Stripe/BACS.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/PaymentDrivers/Stripe/BACS.php b/app/PaymentDrivers/Stripe/BACS.php index 03f0c4d7f7d0..aa3b4be79031 100644 --- a/app/PaymentDrivers/Stripe/BACS.php +++ b/app/PaymentDrivers/Stripe/BACS.php @@ -96,7 +96,7 @@ class BACS 'confirm' => true, ]; $state = [ - 'payment_hash' => $request->payment_hash, + 'payment_hash' => $this->stripe->payment_hash->hash, 'payment_intent' => $this->stripe->createPaymentIntent($payment_intent_data), ]; $state = array_merge($state, $request->all());