From e5e2af0c256aac7047932c7b27186d3ce71e1238 Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Sat, 20 Mar 2021 15:34:07 +0100 Subject: [PATCH] [ios] Fixed links in Settings -> Aboout Signed-off-by: Alexander Borsuk --- iphone/Maps/UI/Settings/MWMAboutController.m | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/iphone/Maps/UI/Settings/MWMAboutController.m b/iphone/Maps/UI/Settings/MWMAboutController.m index aaefd431e0..965bcc40bc 100644 --- a/iphone/Maps/UI/Settings/MWMAboutController.m +++ b/iphone/Maps/UI/Settings/MWMAboutController.m @@ -48,7 +48,7 @@ SettingsTableViewLinkCell *cell = [tableView cellForRowAtIndexPath:indexPath]; if (cell == self.websiteCell) { - [self openUrl:[NSURL URLWithString:@"https://omaps.app"]]; + [self openUrl:[NSURL URLWithString:@"https://omaps.app/"]]; } else if (cell == self.facebookCell) { @@ -60,7 +60,7 @@ } else if (cell == self.osmCell) { - [self openUrl:[NSURL URLWithString:@"https://www.openstreetmap.org"]]; + [self openUrl:[NSURL URLWithString:@"https://www.openstreetmap.org/about"]]; } else if (cell == self.rateCell) { @@ -68,11 +68,11 @@ } else if (cell == self.privacyPolicyCell) { - [self openUrl:[NSURL URLWithString:@"https://omaps.app/terms"]]; + [self openUrl:[NSURL URLWithString:@"https://omaps.app/privacy"]]; } else if (cell == self.termsOfUseCell) { - [self openUrl:[NSURL URLWithString:@"https://omaps.app/privacy"]]; + [self openUrl:[NSURL URLWithString:@"https://omaps.app/terms"]]; } else if (cell == self.copyrightCell) {