diff --git a/CRM/Stripe/PaymentIntent.php b/CRM/Stripe/PaymentIntent.php index c2e2f156b3f98d87b7c24ac87d3bd9036524ac4f..3700888e93af719964765dedfd0db0b74c1635a7 100644 --- a/CRM/Stripe/PaymentIntent.php +++ b/CRM/Stripe/PaymentIntent.php @@ -246,7 +246,6 @@ class CRM_Stripe_PaymentIntent { } catch (Exception $e) { // Save the "error" in the paymentIntent table in in case investigation is required. $stripePaymentintentParams = [ - 'stripe_intent_id' => 'null', 'payment_processor_id' => $this->paymentProcessor->getID(), 'status' => 'failed', 'description' => "{$e->getRequestId()};{$e->getMessage()};{$this->description}", @@ -352,7 +351,6 @@ class CRM_Stripe_PaymentIntent { } catch (Exception $e) { // Save the "error" in the paymentIntent table in in case investigation is required. $stripePaymentintentParams = [ - 'stripe_intent_id' => 'null', 'payment_processor_id' => $this->paymentProcessor->getID(), 'status' => 'failed', 'description' => "{$e->getRequestId()};{$e->getMessage()};{$this->description}",