Skip to content

Commit

Permalink
Mod: Set requests to https
Browse files Browse the repository at this point in the history
  • Loading branch information
RedOrion committed Feb 21, 2016
1 parent 5f0805a commit 7f18157
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion UniversalClient/iPhone/Controllers/SupportController.m
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ - (void)viewDidLoad {

self.webView.hidden = YES;

[self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://community.lacunaexpanse.com/forums"]]];
[self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"https://community.lacunaexpanse.com/forums"]]];
}

- (void)viewWillAppear:(BOOL)animated {
Expand Down
2 changes: 1 addition & 1 deletion UniversalClient/iPhone/Controllers/TutorialController.m
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ - (void)viewDidLoad {

self.webView.hidden = YES;

[self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.lacunaexpanse.com/tutorial/"]]];
[self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"https://www.lacunaexpanse.com/tutorial/"]]];
}

- (void)viewWillAppear:(BOOL)animated {
Expand Down

0 comments on commit 7f18157

Please sign in to comment.