mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-02 04:04:43 +08:00
fix(connector): [Stripe] Fix bug in Stripe Bacs Bank Debit (#1537)
This commit is contained in:
@ -942,7 +942,7 @@ fn get_bank_debit_data(
|
||||
} => {
|
||||
let bacs_data = BankDebitData::Bacs {
|
||||
account_number: account_number.to_owned(),
|
||||
sort_code: sort_code.to_owned(),
|
||||
sort_code: Secret::new(sort_code.clone().expose().replace('-', "")),
|
||||
};
|
||||
|
||||
let billing_data = StripeBillingAddress::from(billing_details);
|
||||
|
||||
Reference in New Issue
Block a user