mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2025-05-21 21:40:01 +03:00
#1112 - Fix xmpp links not opening xmpp client
This commit is contained in:
parent
98adcc1abd
commit
acff2ae390
1 changed files with 15 additions and 3 deletions
|
@ -703,23 +703,35 @@ public class Helper {
|
||||||
try {
|
try {
|
||||||
customTabsIntent.launchUrl(context, Uri.parse(url).normalizeScheme());
|
customTabsIntent.launchUrl(context, Uri.parse(url).normalizeScheme());
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
if(url.toLowerCase().startsWith("xmpp:")) {
|
||||||
|
Intent intent = new Intent(Intent.ACTION_VIEW);
|
||||||
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||||
|
intent.setData(Uri.parse("https://xmpp.link/#" + url.toLowerCase().replace("xmpp:","")).normalizeScheme());
|
||||||
|
context.startActivity(intent);
|
||||||
|
} else {
|
||||||
Toasty.error(context, context.getString(R.string.toast_error), Toast.LENGTH_LONG).show();
|
Toasty.error(context, context.getString(R.string.toast_error), Toast.LENGTH_LONG).show();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
Intent intent = new Intent(Intent.ACTION_VIEW);
|
Intent intent = new Intent(Intent.ACTION_VIEW);
|
||||||
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||||
if (!url.toLowerCase().startsWith("http://") && !url.toLowerCase().startsWith("https://") && !url.toLowerCase().startsWith("gemini://")) {
|
if (!url.toLowerCase().startsWith("http://") && !url.toLowerCase().startsWith("https://") && !url.toLowerCase().startsWith("gemini://") && !url.toLowerCase().startsWith("xmpp:")) {
|
||||||
url = "http://" + url;
|
url = "http://" + url;
|
||||||
}
|
}
|
||||||
intent.setData(Uri.parse(url).normalizeScheme());
|
intent.setData(Uri.parse(url).normalizeScheme());
|
||||||
try {
|
try {
|
||||||
context.startActivity(intent);
|
context.startActivity(intent);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
if(url.toLowerCase().startsWith("xmpp:")) {
|
||||||
|
intent.setData(Uri.parse("https://xmpp.link/#" + url.toLowerCase().replace("xmpp:","")).normalizeScheme());
|
||||||
|
context.startActivity(intent);
|
||||||
|
} else {
|
||||||
Toasty.error(context, context.getString(R.string.toast_error), Toast.LENGTH_LONG).show();
|
Toasty.error(context, context.getString(R.string.toast_error), Toast.LENGTH_LONG).show();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Transform URLs to privacy frontend
|
* Transform URLs to privacy frontend
|
||||||
|
|
Loading…
Reference in a new issue