diff --git a/iphone/Maps/Core/InappPurchase/Impl/InAppBilling.swift b/iphone/Maps/Core/InappPurchase/Impl/InAppBilling.swift index 78b2711f78..7521ded775 100644 --- a/iphone/Maps/Core/InappPurchase/Impl/InAppBilling.swift +++ b/iphone/Maps/Core/InappPurchase/Impl/InAppBilling.swift @@ -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)