Changeset 3447756
- Timestamp:
- 01/27/2026 10:38:17 AM (9 days ago)
- Location:
- woo-mailerlite
- Files:
-
- 2 added
- 4 deleted
- 4 edited
- 1 copied
-
tags/3.1.8 (copied) (copied from woo-mailerlite/trunk)
-
tags/3.1.8/README.md (deleted)
-
tags/3.1.8/README.txt (added)
-
tags/3.1.8/includes/jobs/WooMailerLiteCustomerSyncJob.php (modified) (2 diffs)
-
tags/3.1.8/readme.txt (deleted)
-
tags/3.1.8/woo-mailerlite.php (modified) (2 diffs)
-
trunk/README.md (deleted)
-
trunk/README.txt (added)
-
trunk/includes/jobs/WooMailerLiteCustomerSyncJob.php (modified) (2 diffs)
-
trunk/readme.txt (deleted)
-
trunk/woo-mailerlite.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-mailerlite/tags/3.1.8/includes/jobs/WooMailerLiteCustomerSyncJob.php
r3420776 r3447756 21 21 } 22 22 } 23 if (WooMailerLiteApi::client()->isClassic()) { 24 static::$jobModel->delete(); 25 } else { 23 if (WooMailerLiteApi::client()->isRewrite()) { 26 24 $originalCustomers = $customers->toArray(); 27 25 … … 44 42 }, $originalCustomers); 45 43 46 $response = WooMailerLiteApi::client()->syncCustomers($transformedCustomers); 47 48 if ($response->success) { 49 static::$jobModel->delete(); 50 } 44 WooMailerLiteApi::client()->syncCustomers($transformedCustomers); 51 45 } 52 46 -
woo-mailerlite/tags/3.1.8/woo-mailerlite.php
r3421835 r3447756 16 16 * Plugin URI: https://mailerlite.com 17 17 * Description: Official MailerLite integration for WooCommerce. Track sales and campaign ROI, import products details, automate emails based on purchases and seamlessly add your customers to your email marketing lists via WooCommerce's checkout process. 18 * Version: 3.1. 718 * Version: 3.1.8 19 19 * Author: MailerLite 20 20 * Author URI: https://mailerlite.com … … 40 40 * Update when you release new versions. 41 41 */ 42 define( 'WOO_MAILERLITE_VERSION', '3.1. 7' );42 define( 'WOO_MAILERLITE_VERSION', '3.1.8' ); 43 43 44 44 define('WOO_MAILERLITE_ASYNC_JOBS', false); -
woo-mailerlite/trunk/includes/jobs/WooMailerLiteCustomerSyncJob.php
r3420776 r3447756 21 21 } 22 22 } 23 if (WooMailerLiteApi::client()->isClassic()) { 24 static::$jobModel->delete(); 25 } else { 23 if (WooMailerLiteApi::client()->isRewrite()) { 26 24 $originalCustomers = $customers->toArray(); 27 25 … … 44 42 }, $originalCustomers); 45 43 46 $response = WooMailerLiteApi::client()->syncCustomers($transformedCustomers); 47 48 if ($response->success) { 49 static::$jobModel->delete(); 50 } 44 WooMailerLiteApi::client()->syncCustomers($transformedCustomers); 51 45 } 52 46 -
woo-mailerlite/trunk/woo-mailerlite.php
r3421835 r3447756 16 16 * Plugin URI: https://mailerlite.com 17 17 * Description: Official MailerLite integration for WooCommerce. Track sales and campaign ROI, import products details, automate emails based on purchases and seamlessly add your customers to your email marketing lists via WooCommerce's checkout process. 18 * Version: 3.1. 718 * Version: 3.1.8 19 19 * Author: MailerLite 20 20 * Author URI: https://mailerlite.com … … 40 40 * Update when you release new versions. 41 41 */ 42 define( 'WOO_MAILERLITE_VERSION', '3.1. 7' );42 define( 'WOO_MAILERLITE_VERSION', '3.1.8' ); 43 43 44 44 define('WOO_MAILERLITE_ASYNC_JOBS', false);
Note: See TracChangeset
for help on using the changeset viewer.