Fix issue #833 - URL protocol in upper case

This commit is contained in:
Thomas 2023-03-21 13:10:14 +01:00
parent 6345fe6adb
commit 15416b8c5a
1 changed files with 2 additions and 0 deletions

View File

@ -665,6 +665,8 @@ public class Helper {
.build();
builder.setDefaultColorSchemeParams(defaultColors);
CustomTabsIntent customTabsIntent = builder.build();
url = url.replace("HTTPS://", "https://");
url = url.replace("HTTP://", "http://");
try {
customTabsIntent.launchUrl(context, Uri.parse(url));
} catch (Exception e) {