Skip to content

Commit

Permalink
Update Sources shutdown date
Browse files Browse the repository at this point in the history
  • Loading branch information
diegocurbelo committed Oct 27, 2024
1 parent 1989fbd commit 3a2931b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions includes/class-wc-stripe-feature-flags.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ public static function did_merchant_disable_upe() {


/**
* 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).
*
* @return bool Whether the APMs are deprecated.
*/
public static function are_apms_deprecated() {
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();
}
}

0 comments on commit 3a2931b

Please sign in to comment.