From 7db95405e525668c0b303115ab4e0cb0cde0dee3 Mon Sep 17 00:00:00 2001 From: Lars Kusch Date: Sat, 17 Dec 2022 06:22:57 +0100 Subject: [PATCH] Minor changes --- app/PaymentDrivers/Stripe/BACS.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/PaymentDrivers/Stripe/BACS.php b/app/PaymentDrivers/Stripe/BACS.php index ab57def73b28..5830cadac8c3 100644 --- a/app/PaymentDrivers/Stripe/BACS.php +++ b/app/PaymentDrivers/Stripe/BACS.php @@ -78,6 +78,7 @@ class BACS 'currency' => $this->stripe->client->getCurrencyCode(), 'customer' => $this->stripe->findOrCreateCustomer(), 'description' => $description, + 'payment_method_types' => ['bacs_debit'], 'metadata' => [ 'payment_hash' => $this->stripe->payment_hash->hash, 'gateway_type_id' => GatewayType::BACS,