From 4997b4e3325bef74df1e971508ca0112a387b419 Mon Sep 17 00:00:00 2001 From: Michael Kirk Date: Fri, 8 Sep 2017 12:56:53 -0400 Subject: [PATCH] update to new support URL // FREEBIE --- Signal/src/ViewControllers/AboutTableViewController.m | 11 +++++------ .../src/ViewControllers/FingerprintViewController.m | 2 +- Signal/src/ViewControllers/ProfileViewController.m | 2 +- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/Signal/src/ViewControllers/AboutTableViewController.m b/Signal/src/ViewControllers/AboutTableViewController.m index 5ce2cb84e..4aac70d56 100644 --- a/Signal/src/ViewControllers/AboutTableViewController.m +++ b/Signal/src/ViewControllers/AboutTableViewController.m @@ -34,12 +34,11 @@ OWSTableSection *helpSection = [OWSTableSection new]; helpSection.headerTitle = NSLocalizedString(@"SETTINGS_HELP_HEADER", @""); - [helpSection - addItem:[OWSTableItem disclosureItemWithText:NSLocalizedString(@"SETTINGS_SUPPORT", @"") - actionBlock:^{ - [[UIApplication sharedApplication] - openURL:[NSURL URLWithString:@"http://support.whispersystems.org"]]; - }]]; + [helpSection addItem:[OWSTableItem disclosureItemWithText:NSLocalizedString(@"SETTINGS_SUPPORT", @"") + actionBlock:^{ + [[UIApplication sharedApplication] + openURL:[NSURL URLWithString:@"https://support.signal.org"]]; + }]]; [contents addSection:helpSection]; UILabel *copyrightLabel = [UILabel new]; diff --git a/Signal/src/ViewControllers/FingerprintViewController.m b/Signal/src/ViewControllers/FingerprintViewController.m index 1ec1b0c56..0a0516766 100644 --- a/Signal/src/ViewControllers/FingerprintViewController.m +++ b/Signal/src/ViewControllers/FingerprintViewController.m @@ -490,7 +490,7 @@ typedef void (^CustomLayoutBlock)(); - (void)learnMoreButtonTapped:(UIGestureRecognizer *)gestureRecognizer { if (gestureRecognizer.state == UIGestureRecognizerStateRecognized) { - NSString *learnMoreURL = @"https://support.whispersystems.org/hc/en-us/articles/" + NSString *learnMoreURL = @"https://support.signal.org/hc/en-us/articles/" @"213134107"; [[UIApplication sharedApplication] openURL:[NSURL URLWithString:learnMoreURL]]; } diff --git a/Signal/src/ViewControllers/ProfileViewController.m b/Signal/src/ViewControllers/ProfileViewController.m index 53f605e75..cc5ea43cc 100644 --- a/Signal/src/ViewControllers/ProfileViewController.m +++ b/Signal/src/ViewControllers/ProfileViewController.m @@ -510,7 +510,7 @@ NSString *const kProfileView_LastPresentedDate = @"kProfileView_LastPresentedDat { if (sender.state == UIGestureRecognizerStateRecognized) { [UIApplication.sharedApplication - openURL:[NSURL URLWithString:@"https://support.whispersystems.org/hc/en-us/articles/115001110511"]]; + openURL:[NSURL URLWithString:@"https://support.signal.org/hc/en-us/articles/115001110511"]]; } }