From ec902380f5f7b984d0f289820bfde1af507a8644 Mon Sep 17 00:00:00 2001 From: Roman Tsisyk Date: Sat, 10 Apr 2021 20:32:43 +0300 Subject: [PATCH] [ios]: Use the TestFlight URL in About->Rate the app We don't have AppStore link yet. Replace MAPS.ME AppStore link with our TestFlight URL. See #304 Signed-off-by: Roman Tsisyk --- iphone/Maps/Categories/UIKitCategories.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iphone/Maps/Categories/UIKitCategories.m b/iphone/Maps/Categories/UIKitCategories.m index f311d05cb9..d108a0a62b 100644 --- a/iphone/Maps/Categories/UIKitCategories.m +++ b/iphone/Maps/Categories/UIKitCategories.m @@ -85,7 +85,7 @@ - (void)rateApp { - NSString * urlString = @"https://itunes.apple.com/app/id510623322?action=write-review"; + NSString * urlString = @"https://testflight.apple.com/join/62l4Qh2K"; NSURL * url = [NSURL URLWithString:urlString]; [self openURL:url options:@{} completionHandler:nil]; }