Merge pull request #3435 from deltachat/adb/allow-to-open-http-link

allow to open in browser http links that look like proxies
This commit is contained in:
adb
2024-11-21 01:31:11 +01:00
committed by GitHub
@@ -98,6 +98,9 @@ public class QrCodeHandler {
dcContext.restartIo();
showDoneToast(activity);
});
if (rawString.toLowerCase().startsWith("http")) {
builder.setNeutralButton(R.string.open, (d, b) -> IntentUtils.showBrowserIntent(activity, rawString));
}
builder.setNegativeButton(R.string.cancel, null);
builder.setCancelable(false);
break;