Merge pull request #6461 from turbo124/v5-develop

Fixes for Stripe Verify
This commit is contained in:
David Bomba 2021-08-15 16:00:44 +10:00 committed by GitHub
commit 4276e76fd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,7 +49,7 @@ class Verify
{ {
$this->stripe->init(); $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); return response()->json("Stripe Connect not authenticated", 400);
$customers = Customer::all([], $this->stripe->stripe_connect_auth); $customers = Customer::all([], $this->stripe->stripe_connect_auth);