Skip to content

Commit

Permalink
Update braintree core to 4.49.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
sshropshire committed Jul 24, 2024
1 parent 8f5a98a commit 00c25bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ public void onAuthorizationResult(@Nullable Authorization authorization, @Nullab
callback.onResult(null, graphQLError);
}

braintreeClient.sendGraphQLPOST(base.toString(), (responseBody, httpError) -> {
braintreeClient.sendGraphQLPOST(base, (responseBody, httpError) -> {
if (responseBody != null) {
callback.onResult(paymentMethodNonce, null);
braintreeClient.sendAnalyticsEvent("delete-payment-methods.succeeded");
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
}
}

ext.brainTreeVersion = "4.48.0"
ext.brainTreeVersion = "4.49.1"

ext.deps = [
"braintreeCore" : "com.braintreepayments.api:braintree-core:$brainTreeVersion",
Expand Down

0 comments on commit 00c25bf

Please sign in to comment.