mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-05 08:59:14 +08:00
Fix ThreeDSecure warning.
This commit is contained in:
parent
acbbb06ca5
commit
9032457868
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