Fixed crash when tapping external link in shownotes

This commit is contained in:
ByteHamster 2020-02-02 10:50:16 +01:00
parent 63290ae762
commit 05b4945233
1 changed files with 1 additions and 0 deletions

View File

@ -38,6 +38,7 @@ public class IntentUtils {
public static void openInBrowser(Context context, String url) {
try {
Intent myIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
myIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(myIntent);
} catch (ActivityNotFoundException e) {
Toast.makeText(context, R.string.pref_no_browser_found, Toast.LENGTH_LONG).show();