mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 14:57:26 +08:00
Merge pull request #2051 from woocommerce/PCP-2466-acdc-unsuccessfully-payment-with-new-credit-card-when-debugging-is-enabled-json-error-on-frontend-and-warning-on-network-tab-2
ACDC Unsuccessfully payment with new credit card when debugging is enabled (json error on frontend and warning on network tab) (2466)
This commit is contained in:
commit
da6d57b77b
1 changed files with 2 additions and 2 deletions
|
@ -67,10 +67,10 @@ class ThreeDSecure {
|
|||
return self::NO_DECISION;
|
||||
}
|
||||
|
||||
if ( ! $payment_source->properties()->brand ?? '' ) {
|
||||
if ( ! ( $payment_source->properties()->brand ?? '' ) ) {
|
||||
return self::NO_DECISION;
|
||||
}
|
||||
if ( ! $payment_source->properties()->authentication_result ?? '' ) {
|
||||
if ( ! ( $payment_source->properties()->authentication_result ?? '' ) ) {
|
||||
return self::NO_DECISION;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue