Skip to content
Snippets Groups Projects
Commit 400be065 authored by mattwire's avatar mattwire
Browse files

Require Firewall 1.5.3

parent 73f6c7f7
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,7 @@ class CRM_Stripe_Check { ...@@ -26,7 +26,7 @@ class CRM_Stripe_Check {
* @var string * @var string
*/ */
const MIN_VERSION_MJWSHARED = '1.2.9'; const MIN_VERSION_MJWSHARED = '1.2.9';
const MIN_VERSION_FIREWALL = '1.5.2'; const MIN_VERSION_FIREWALL = '1.5.3';
/** /**
* @var array * @var array
......
...@@ -388,7 +388,8 @@ class CRM_Stripe_PaymentIntent { ...@@ -388,7 +388,8 @@ class CRM_Stripe_PaymentIntent {
$intentParams['customer'] = $params['customer']; $intentParams['customer'] = $params['customer'];
} }
$intent = $this->paymentProcessor->stripeClient->paymentIntents->create($intentParams); $intent = $this->paymentProcessor->stripeClient->paymentIntents->create($intentParams);
} catch (Exception $e) { }
catch (Exception $e) {
// Save the "error" in the paymentIntent table in case investigation is required. // Save the "error" in the paymentIntent table in case investigation is required.
$stripePaymentintentParams = [ $stripePaymentintentParams = [
'payment_processor_id' => $this->paymentProcessor->getID(), 'payment_processor_id' => $this->paymentProcessor->getID(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment