Open links in new tabs (#603)

This commit is contained in:
Ivan Kupalov 2018-04-26 23:52:45 +03:00 committed by Konrad Pozniak
parent aecdbda375
commit 3dfe43dfb2
1 changed files with 0 additions and 1 deletions

View File

@ -147,7 +147,6 @@ public class LinkHelper {
*/
public static void openLinkInBrowser(Uri uri, Context context) {
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
intent.putExtra(Browser.EXTRA_APPLICATION_ID, context.getPackageName());
try {
context.startActivity(intent);
} catch (ActivityNotFoundException e) {