mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2024-12-22 16:50:04 +02:00
Fix issue #833 - URL protocol in upper case
This commit is contained in:
parent
6345fe6adb
commit
15416b8c5a
1 changed files with 2 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue