Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -819,10 +819,11 @@ public function braspag_antifraud_request_builder($cart, $order, $braspag_pagado
*/
public function braspag_pagador_creditcard_payment_request_antifraud_builder($payment_data, $order, $checkout, $cart)
{
// Antifraud is allowed to run alongside 3DS; only skip when antifraud is
// disabled, not configured to send with the Pagador transaction, or SOP is active.
if (
'yes' !== $this->antifraud_enabled
|| 'yes' !== $this->antifraud_send_with_pagador_transaction
// || 'yes' === $this->auth3ds20_mpi_is_active
|| 'yes' === $this->sop_enabled
) {
return $payment_data;
Expand Down