Skip to content
This repository has been archived by the owner on Oct 19, 2020. It is now read-only.

Commit

Permalink
Merge pull request #143 from Risingson/patch-1
Browse files Browse the repository at this point in the history
Update IabHelper.java
  • Loading branch information
moritzgloeckl committed Sep 4, 2017
2 parents 8b35aa3 + fa96416 commit 67463dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/android/IabHelper.java
Expand Up @@ -298,7 +298,7 @@ public void dispose() {
mSetupDone = false;
if (mServiceConn != null) {
logDebug("Unbinding from service.");
if (mContext != null) mContext.unbindService(mServiceConn);
if (mContext != null && mService != null) mContext.unbindService(mServiceConn);
}
mDisposed = true;
mContext = null;
Expand Down

0 comments on commit 67463dc

Please sign in to comment.