Add #639 to changelog and log not getting PayPal order error

This commit is contained in:
dinamiko 2022-06-14 16:18:53 +02:00
parent ceb95952a9
commit 5a6113f714
3 changed files with 3 additions and 0 deletions

View file

@ -2,6 +2,7 @@
= 1.8.2 - TBD =
* Fix - Order not approved: payment via vaulted PayPal account fails #677
* Fix - Cant' refund : "ERROR Refund failed: No country given for address." #639
* Fix - Something went wrong error in Virtual products when using vaulted payment #673
* Fix - PayPal smart buttons are not displayed for product variations when parent product is set to out of stock #669
* Fix - Pay Later messaging displayed for out of stock variable products or with no variation selected #667

View file

@ -131,6 +131,7 @@ class AuthorizedPaymentsProcessor {
try {
$order = $this->paypal_order_from_wc_order( $wc_order );
} catch ( Exception $exception ) {
$this->logger->error( 'Could not get PayPal order from WC order: ' . $exception->getMessage() );
if ( $exception->getCode() === 404 ) {
return self::NOT_FOUND;
}

View file

@ -83,6 +83,7 @@ Follow the steps below to connect the plugin to your PayPal account:
= 1.8.2 =
* Fix - Order not approved: payment via vaulted PayPal account fails #677
* Fix - Cant' refund : "ERROR Refund failed: No country given for address." #639
* Fix - Something went wrong error in Virtual products when using vaulted payment #673
* Fix - PayPal smart buttons are not displayed for product variations when parent product is set to out of stock #669
* Fix - Pay Later messaging displayed for out of stock variable products or with no variation selected #667