2
0

Remove ssl prefix from masterpasswordapp.com URL.

This commit is contained in:
Maarten Billemont
2018-05-03 13:51:00 +02:00
parent 1031414ba2
commit 1cb720da32
4 changed files with 5 additions and 5 deletions

View File

@@ -207,13 +207,13 @@
- (IBAction)homePageButton:(id)sender {
[[self dismissPopup].navigationController performSegueWithIdentifier:@"web" sender:
[NSURL URLWithString:@"https://ssl.masterpasswordapp.com"]];
[NSURL URLWithString:@"https://masterpasswordapp.com"]];
}
- (IBAction)securityButton:(id)sender {
[[self dismissPopup].navigationController performSegueWithIdentifier:@"web" sender:
[NSURL URLWithString:@"https://ssl.masterpasswordapp.com/security.html"]];
[NSURL URLWithString:@"https://masterpasswordapp.com/security.html"]];
}
- (IBAction)sourceButton:(id)sender {

View File

@@ -32,7 +32,7 @@
[super viewWillAppear:animated];
if (!self.initialURL)
self.initialURL = [NSURL URLWithString:@"https://ssl.masterpasswordapp.com"];
self.initialURL = [NSURL URLWithString:@"https://masterpasswordapp.com"];
self.webNavigationItem.title = self.initialURL.host;