From e2a8196107969252a2d6a0d0303091dfb880fa48 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Sat, 4 Sep 2021 09:41:39 +1000 Subject: [PATCH] Small fix for stripe import customers --- app/PaymentDrivers/Stripe/ImportCustomers.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/PaymentDrivers/Stripe/ImportCustomers.php b/app/PaymentDrivers/Stripe/ImportCustomers.php index 4f561b98d303..54078a21fa44 100644 --- a/app/PaymentDrivers/Stripe/ImportCustomers.php +++ b/app/PaymentDrivers/Stripe/ImportCustomers.php @@ -83,7 +83,6 @@ class ImportCustomers if($existing_customer_token){ nlog("Skipping - Customer exists: {$customer->email} just updating payment methods"); $this->update_payment_methods->updateMethods($customer, $existing_customer_token->client); - return; } if($customer->email && $contact = $this->stripe->company_gateway->company->client_contacts()->where('email', $customer->email)->first()){