[iOS] fix crash when requesting product info on Paid Route screen

This commit is contained in:
Aleksey Belouosv 2018-11-26 18:18:34 +03:00 committed by Olesia Bolovintseva
parent ae6d4057d3
commit c4de0ff211

View file

@ -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
}