From faff3a9dcb92b86555b5bdd1540142400d9d8eed Mon Sep 17 00:00:00 2001 From: Dmitrii Fediuk Date: Thu, 2 May 2024 21:16:08 +0100 Subject: [PATCH] https://github.com/thehcginstitute-com/m1/issues/590 --- .../community/Ebizmarts/MailChimp/Model/ProcessWebhook.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/code/community/Ebizmarts/MailChimp/Model/ProcessWebhook.php b/app/code/community/Ebizmarts/MailChimp/Model/ProcessWebhook.php index ff9e369f4b..9f4d4ee635 100644 --- a/app/code/community/Ebizmarts/MailChimp/Model/ProcessWebhook.php +++ b/app/code/community/Ebizmarts/MailChimp/Model/ProcessWebhook.php @@ -111,8 +111,7 @@ private function _saveProcessedWebhook($webhookRequest):void {$webhookRequest->s */ private function _subscribe(array $data):void { try { - $subscribe = true; - $this->getMailchimpTagsModel()->processMergeFields($data, $subscribe); + $this->getMailchimpTagsModel()->processMergeFields($data, true); } catch (Exception $e) { Mage::logException($e); }