forked from organicmaps/organicmaps
[iOS] fix crash when requesting product info on Paid Route screen
This commit is contained in:
parent
ae6d4057d3
commit
c4de0ff211
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ final class PaidRoutePurchase: NSObject, IPaidRoutePurchase {
|
|||
|
||||
func requestStoreProduct(_ completion: @escaping StoreProductCompletion) {
|
||||
billing.requestProducts([productId]) { [weak self] (products, error) in
|
||||
guard let product = products?[0] else {
|
||||
guard let product = products?.first else {
|
||||
completion(nil, error)
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue