Skip to content

Commit

Permalink
Fix spacingf
Browse files Browse the repository at this point in the history
  • Loading branch information
dajaffe committed Jan 24, 2019
1 parent cc9ad1e commit 1027aa3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions android/src/main/java/com/dooboolab/RNIap/RNIapModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,10 @@ private void ensureConnection (final Promise promise, final Runnable callback) {
public void onBillingSetupFinished(@BillingClient.BillingResponse int responseCode) {
if (responseCode == BillingClient.BillingResponse.OK ) {
Log.d(TAG, "billing client ready");
if (!bSetupCallbackConsumed) {
bSetupCallbackConsumed = true;
if (!bSetupCallbackConsumed) {
bSetupCallbackConsumed = true;
callback.run();
}
}
} else {
rejectPromiseWithBillingError(promise, responseCode);
}
Expand Down

0 comments on commit 1027aa3

Please sign in to comment.