Use filter to avoid exception when WC orders are out of sync

[MAILPOET-5759]
This commit is contained in:
Jan Lysý
2023-12-07 09:50:00 +01:00
committed by Rostislav Wolný
parent 7d24708d3b
commit a0865ad2a6

View File

@ -48,3 +48,8 @@ function mailpoet_create_cot() {
if (class_exists(WP_CLI::class)) {
WP_CLI::add_command('create_cot', 'mailpoet_create_cot');
}
// Related PR in WooCommerce: https://github.com/woocommerce/woocommerce/pull/39988
// Sometimes during tests can happen that orders are out of sync. This state can trigger and exception
// The following filter avoids this state
add_filter('wc_allow_changing_orders_storage_while_sync_is_pending', '__return_true');