[iOS] fix release build

This commit is contained in:
Aleksey Belouosv 2018-11-16 13:05:51 +03:00 committed by Olesia Bolovintseva
parent 55ba461642
commit 49cdc35531

View file

@ -48,6 +48,7 @@ final class InAppBilling: NSObject, IInAppBilling {
func makePayment(_ product: IBillingProduct, completion: @escaping PaymentCompletion) {
guard let billingProduct = product as? BillingProduct else {
assert(false, "Wrong product type")
return
}
paymentCompletion = completion
@ -58,6 +59,7 @@ final class InAppBilling: NSObject, IInAppBilling {
func finishTransaction() {
guard let transaction = pendingTransaction else {
assert(false, "You must call makePayment() first")
return
}
SKPaymentQueue.default().finishTransaction(transaction)