Fix methods from SHelper

Both Google and Facebook force HTTPS-only traffic for years.
This commit is contained in:
Miłosz Sieradzki 2015-11-03 22:28:07 +01:00
parent bfc6c3dadc
commit 5059a3d01b

View File

@ -251,8 +251,8 @@ class SHelper {
}
public static String getUrlFromUglyGoogleRedirect(String url) {
if (url.startsWith("http://www.google.com/url?")) {
url = url.substring("http://www.google.com/url?".length());
if (url.startsWith("https://www.google.com/url?")) {
url = url.substring("https://www.google.com/url?".length());
String arr[] = urlDecode(url).split("&");
for (String str : arr) {
if (str.startsWith("q="))
@ -264,8 +264,8 @@ class SHelper {
}
public static String getUrlFromUglyFacebookRedirect(String url) {
if (url.startsWith("http://www.facebook.com/l.php?u=")) {
url = url.substring("http://www.facebook.com/l.php?u=".length());
if (url.startsWith("https://www.facebook.com/l.php?u=")) {
url = url.substring("https://www.facebook.com/l.php?u=".length());
return urlDecode(url);
}