Skip to content

Commit

Permalink
fix(connector): [Trustpay] Add mapping to error code 100.390.105 (#4019)
Browse files Browse the repository at this point in the history
  • Loading branch information
prasunna09 committed Mar 11, 2024
1 parent d0f248c commit c7decb2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions crates/router/src/connector/trustpay/transformers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,10 @@ fn is_payment_failed(payment_status: &str) -> (bool, &'static str) {
"100.380.401" => (true, "User authentication failed"),
"100.380.501" => (true, "Risk management transaction timeout"),
"100.390.103" => (true, "PARes validation failed - problem with signature"),
"100.390.105" => (
true,
"Transaction rejected because of technical error in 3DSecure system",
),
"100.390.111" => (
true,
"Communication error to VISA/Mastercard Directory Server",
Expand Down

0 comments on commit c7decb2

Please sign in to comment.