mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
Add #639 to changelog and log not getting PayPal order error
This commit is contained in:
parent
ceb95952a9
commit
5a6113f714
3 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue