We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1989fbd commit 3a2931bCopy full SHA for 3a2931b
includes/class-wc-stripe-feature-flags.php
@@ -50,11 +50,11 @@ public static function did_merchant_disable_upe() {
50
51
52
/**
53
- * Checks if the APMs are deprecated. Stripe deprecated them by October 31, 2024 (for the legacy checkout).
+ * Checks if the APMs are deprecated. Stripe deprecated them on October 29, 2024 (for the legacy checkout).
54
*
55
* @return bool Whether the APMs are deprecated.
56
*/
57
public static function are_apms_deprecated() {
58
- return ( new \DateTime() )->format( 'Y-m-d' ) > '2024-10-29' && ! self::is_upe_checkout_enabled();
+ return ( new \DateTime() )->format( 'Y-m-d' ) > '2024-10-28' && ! self::is_upe_checkout_enabled();
59
}
60
0 commit comments