From b1b9b5d1201b029d1c46564191c2439b01a91383 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Mon, 5 Dec 2022 13:00:40 +1100 Subject: [PATCH] Add Off Session to Stripe Auto Billing request --- 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 36fb40e9a104..2e8ecb0de396 100644 --- a/app/PaymentDrivers/Stripe/Charge.php +++ b/app/PaymentDrivers/Stripe/Charge.php @@ -79,7 +79,7 @@ class Charge 'payment_method' => $cgt->token, 'customer' => $cgt->gateway_customer_reference, 'confirm' => true, - // 'off_session' => true, + 'off_session' => true, 'description' => $description, 'metadata' => [ 'payment_hash' => $payment_hash->hash,