Skip to content

Commit

Permalink
Merge pull request #76 from smarkets/bumpVersion4.0.1
Browse files Browse the repository at this point in the history
Made promise retry fix to data collection and bumped version
  • Loading branch information
nzankich authored Feb 11, 2021
2 parents 84c2bad + 447cb76 commit 5093e1e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,11 @@ public void requestDeviceData(
final String token,
final Promise promise
) {
this.promise = promise;
BraintreeFragment braintreeFragment = null;

try {
braintreeFragment = initializeBraintreeFragment(token, promise);
braintreeFragment = initializeBraintreeFragment(token);
} catch (Exception e) {
promise.reject("braintree_sdk_setup_failed", e);
return;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

{
"name": "react-native-paypal",
"version": "4.0.0",
"version": "4.0.1",
"description": "React Native library that implements PayPal Checkout flow using purely native code",
"main": "index.js",
"typings": "index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions paypalExample/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ PODS:
- React-Core (= 0.63.2)
- React-cxxreact (= 0.63.2)
- React-jsi (= 0.63.2)
- RNPaypal (4.0.0):
- RNPaypal (4.0.1):
- Braintree
- React
- Yoga (1.14.0)
Expand Down Expand Up @@ -489,7 +489,7 @@ SPEC CHECKSUMS:
React-RCTText: 1b6773e776e4b33f90468c20fe3b16ca3e224bb8
React-RCTVibration: 4d2e726957f4087449739b595f107c0d4b6c2d2d
ReactCommon: a0a1edbebcac5e91338371b72ffc66aa822792ce
RNPaypal: 54ceeddf71841ad3c4936c5536f5c670f4a1beac
RNPaypal: 7ae7dd3a064952db331fd87baa6d6d4853ef7ab9
Yoga: 7740b94929bbacbddda59bf115b5317e9a161598
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a

Expand Down

0 comments on commit 5093e1e

Please sign in to comment.