forked from organicmaps/organicmaps
[iOS] fix release build
This commit is contained in:
parent
55ba461642
commit
49cdc35531
1 changed files with 2 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue