From b98e3da4a5a6a7f7f91b35a88e3924e215852f0f Mon Sep 17 00:00:00 2001
From: "Matthew Wire (MJW Consulting)" <mjw@mjwconsult.co.uk>
Date: Thu, 20 Sep 2018 08:31:21 +0100
Subject: [PATCH] Fix updating stripe customer

---
 CRM/Core/Payment/Stripe.php | 2 +-
 CRM/Stripe/Customer.php     | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/CRM/Core/Payment/Stripe.php b/CRM/Core/Payment/Stripe.php
index 649eb3dd..18eb5b23 100644
--- a/CRM/Core/Payment/Stripe.php
+++ b/CRM/Core/Payment/Stripe.php
@@ -494,7 +494,7 @@ class CRM_Core_Payment_Stripe extends CRM_Core_Payment {
         // Customer was found in civicrm_stripe database, but not in Stripe.
         // Delete existing customer record from CiviCRM and create a new customer
         CRM_Stripe_Customer::delete($customerParams);
-        $stripe_customer = CRM_Stripe_Customer::create($customerParams);
+        $stripe_customer = CRM_Stripe_Customer::create($customerParams, $this);
       }
     }
 
diff --git a/CRM/Stripe/Customer.php b/CRM/Stripe/Customer.php
index 26204a7d..c9e7f6cc 100644
--- a/CRM/Stripe/Customer.php
+++ b/CRM/Stripe/Customer.php
@@ -57,7 +57,6 @@ class CRM_Stripe_Customer {
   }
 
   public static function create($params, $paymentProcessor) {
-    $params['processor_id'] = $paymentProcessor->_paymentProcessor['id'];
     $requiredParams = ['contact_id', 'card_token', 'is_live', 'processor_id'];
     // $optionalParams = ['email'];
     foreach ($requiredParams as $required) {
-- 
GitLab