From 8e7f2a30c2f2b4e6eeb2fc58e840f8dd548b585b Mon Sep 17 00:00:00 2001 From: Wojtek Kaminski Date: Wed, 18 Aug 2021 08:29:04 +0200 Subject: [PATCH] - fixed cavv value --- Model/Gateway/Braintree/Response/ThreeDSecureDetailsHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Model/Gateway/Braintree/Response/ThreeDSecureDetailsHandler.php b/Model/Gateway/Braintree/Response/ThreeDSecureDetailsHandler.php index 2639446..7978781 100644 --- a/Model/Gateway/Braintree/Response/ThreeDSecureDetailsHandler.php +++ b/Model/Gateway/Braintree/Response/ThreeDSecureDetailsHandler.php @@ -49,7 +49,7 @@ public function handle(array $handlingSubject, array $response) : void $info = $transaction->threeDSecureInfo; $payment->setAdditionalInformation(self::ECI, $info->eciFlag); - $payment->setAdditionalInformation(self::CAVV, $info->authentication->transStatus); + $payment->setAdditionalInformation(self::CAVV, $info->cavv); $payment->setAdditionalInformation(self::TRANS_STATUS, $info->authentication->transStatus); } }