Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
giorello committed Oct 14, 2020
1 parent 63dd9fe commit a55589a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/code/community/Ebizmarts/MailChimp/Helper/Migration.php
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ function ($order, $mailchimpStoreId) {
$orderId = $order->getEntityId();
$syncError = null;
$syncModified = null;
$orderObject = $helper->getSalesOrderModel()->load($orderId);
$orderObject = $this->getSalesOrderModel()->load($orderId);
$syncDelta = $orderObject->getMailchimpSyncDelta();

if ($order->getMailchimpSyncError()) {
Expand Down Expand Up @@ -473,7 +473,7 @@ function ($quote, $mailchimpStoreId) {
$syncError = null;
$syncDeleted = null;
$token = null;
$quoteObject = $helper->getSalesOrderModel()->load($quoteId);
$quoteObject = $this->getSalesOrderModel()->load($quoteId);
$syncDelta = $quoteObject->getMailchimpSyncDelta();

if ($quote->getMailchimpSyncError()) {
Expand Down

0 comments on commit a55589a

Please sign in to comment.