[ios] Fixed links in Settings -> Aboout

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2021-03-20 15:34:07 +01:00 committed by Alexander Borsuk
parent bac5726485
commit e5e2af0c25

View file

@ -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)
{