From 01bde991da4bbe5fadb4ddbc78664bf680604524 Mon Sep 17 00:00:00 2001 From: Bas Broek Date: Sun, 21 Oct 2018 10:37:35 +0200 Subject: [PATCH] Use https url for login Removes a deprecation warning for SFAuthentication because of using http --- Classes/Login/LoginSplashViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/Login/LoginSplashViewController.swift b/Classes/Login/LoginSplashViewController.swift index 209bb1e4d..b3ecc25c8 100644 --- a/Classes/Login/LoginSplashViewController.swift +++ b/Classes/Login/LoginSplashViewController.swift @@ -11,7 +11,7 @@ import SafariServices import GitHubAPI import GitHubSession -private let loginURL = URL(string: "http://github.com/login/oauth/authorize?client_id=\(Secrets.GitHub.clientId)&scope=user+repo+notifications")! +private let loginURL = URL(string: "https://github.com/login/oauth/authorize?client_id=\(Secrets.GitHub.clientId)&scope=user+repo+notifications")! private let callbackURLScheme = "freetime://" protocol LoginSplashViewControllerDelegate: class {