update to new support URL

// FREEBIE
This commit is contained in:
Michael Kirk 2017-09-08 12:56:53 -04:00
parent 2824892b6e
commit 4997b4e332
3 changed files with 7 additions and 8 deletions

View File

@ -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];

View File

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

View File

@ -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"]];
}
}