From 717cab7e7d81c0f99add829f8d23accbdfae9297 Mon Sep 17 00:00:00 2001 From: Aleksey Belouosv Date: Wed, 6 Mar 2019 15:19:43 +0300 Subject: [PATCH] [iOS] ignore pending transactions in .purchasing state on enter to catalog https://jira.mail.ru/browse/MAPSME-9921 --- .../InappPurchase/Impl/BillingPendingTransaction.swift | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/iphone/Maps/Core/InappPurchase/Impl/BillingPendingTransaction.swift b/iphone/Maps/Core/InappPurchase/Impl/BillingPendingTransaction.swift index e006862376..b509f5e91e 100644 --- a/iphone/Maps/Core/InappPurchase/Impl/BillingPendingTransaction.swift +++ b/iphone/Maps/Core/InappPurchase/Impl/BillingPendingTransaction.swift @@ -12,8 +12,14 @@ final class BillingPendingTransaction: NSObject, IBillingPendingTransaction { var status: TransactionStatus { let routeTransactions = SKPaymentQueue.default().transactions.filter { - !Subscription.legacyProductIds.contains($0.payment.productIdentifier) && + var isOk = !Subscription.legacyProductIds.contains($0.payment.productIdentifier) && !Subscription.productIds.contains($0.payment.productIdentifier) + if isOk && $0.transactionState == .purchasing { + isOk = false + Statistics.logEvent("Pending_purchasing_transaction", + withParameters: ["productId" : $0.payment.productIdentifier]) + } + return isOk } if routeTransactions.count > 1 {