Fix KotlinNullPointerException

This commit is contained in:
Mygod
2018-08-14 11:18:01 +08:00
parent a51cceda03
commit 84bbb32d65

View File

@@ -70,7 +70,7 @@ class EBegFragment : DialogFragment(), PurchasesUpdatedListener, BillingClientSt
override fun onBillingServiceDisconnected() { override fun onBillingServiceDisconnected() {
skus = null skus = null
billingClient = BillingClient.newBuilder(view!!.context).setListener(this).build() billingClient = BillingClient.newBuilder(context ?: return).setListener(this).build()
.also { it.startConnection(this) } .also { it.startConnection(this) }
} }
override fun onBillingSetupFinished(responseCode: Int) { override fun onBillingSetupFinished(responseCode: Int) {