Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: HS-183: ApplePay Payment Request to take client's country in case session sends null #78

Merged
merged 2 commits into from
Dec 21, 2023

Conversation

arun-mi
Copy link
Contributor

@arun-mi arun-mi commented Dec 21, 2023

In new flow it is possible for BE to not know what the country code will be. In such scenarios where Client has to send a country, we are setting the country as client's country by default.

@@ -60,7 +64,7 @@ let jsonToPaymentRequestDataType: Js.Dict.t<Js.Json.t> => paymentRequestData = j
if Utils.getString(jsonDict, "merchant_identifier", "") == "" {
paymentRequestData(
~countryCode=Utils.getString(jsonDict, "country_code", ""),
~currencyCode=Utils.getString(jsonDict, "currency_code", ""),
~currencyCode=Utils.getString(jsonDict, "currency_code", defaultCountryCode),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is defaultCountryCode added for currency_code?

@arun-mi arun-mi merged commit 2ee7afc into main Dec 21, 2023
@arun-mi arun-mi deleted the fix/applepay_country_code branch December 21, 2023 12:24
akash-c-k pushed a commit that referenced this pull request Dec 21, 2023
## [0.16.3](v0.16.2...v0.16.3) (2023-12-21)

### Bug Fixes

* HS-183: ApplePay Payment Request to take client's country in case session sends null ([#78](#78)) ([2ee7afc](2ee7afc))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants