From 564094f741628a25c7d7790540a979f619982bd9 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Sun, 15 Aug 2021 15:55:41 +1000 Subject: [PATCH] Fixes for Stripe Verify --- app/PaymentDrivers/Stripe/Connect/Verify.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/PaymentDrivers/Stripe/Connect/Verify.php b/app/PaymentDrivers/Stripe/Connect/Verify.php index 8d9d994991e4..afd6bf1911fd 100644 --- a/app/PaymentDrivers/Stripe/Connect/Verify.php +++ b/app/PaymentDrivers/Stripe/Connect/Verify.php @@ -49,7 +49,7 @@ class Verify { $this->stripe->init(); - if($this->stripe->stripe_connect && strlen($this->company_gateway->getConfigField('account_id')) < 1)) + if($this->stripe->stripe_connect && strlen($this->company_gateway->getConfigField('account_id')) < 1) return response()->json("Stripe Connect not authenticated", 400); $customers = Customer::all([], $this->stripe->stripe_connect_auth);