Skip to content

Commit

Permalink
Fix CC authentication and error message improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
andykim committed Jul 27, 2022
1 parent e9d4d88 commit d53aca3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/gateways/callback/xendit.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* Make sure the CC authentication status = 1
* That mean the CC token is valid to create the charge
*/
if(!isset($postData['xendit_cc_authentication_status']) || $postData['xendit_cc_authentication_status'] == 0){
if (!isset($postData['xendit_cc_authentication_status']) || $postData['xendit_cc_authentication_status'] == 0) {
logTransaction($gatewayParams['paymentmethod'], $postData, "CC authentication failed");
$creditCard->renderJson(
[
Expand Down

0 comments on commit d53aca3

Please sign in to comment.