From 331d4f71730d75b8bf0199ef4a22b87f1fe594d5 Mon Sep 17 00:00:00 2001 From: Lars Kusch Date: Sat, 17 Dec 2022 12:43:08 +0100 Subject: [PATCH] More fixes for autobilling --- app/PaymentDrivers/Stripe/Charge.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/PaymentDrivers/Stripe/Charge.php b/app/PaymentDrivers/Stripe/Charge.php index a5b9bf6a0211..99e838cd617f 100644 --- a/app/PaymentDrivers/Stripe/Charge.php +++ b/app/PaymentDrivers/Stripe/Charge.php @@ -149,7 +149,7 @@ class Charge $payment_method_type = PaymentType::SEPA; $status = Payment::STATUS_PENDING; } elseif ($cgt->gateway_type_id == GatewayType::BACS){ - $payment_method_type = PaymentType::SEPA; + $payment_method_type = PaymentType::BACS; $status = Payment::STATUS_PENDING; } else {