[fenix] For https://github.com/mozilla-mobile/fenix/issues/4198 - Include Intent.ACTION_SEND to open to browser

pull/600/head
Emily Kager 5 years ago committed by Emily Kager
parent 52c077669f
commit 1c2b197cb0

@ -54,7 +54,7 @@ class IntentReceiverActivity : Activity() {
intent.setClassName(applicationContext, activityClass.java.name)
true
}
intent.action == Intent.ACTION_VIEW -> {
intent.action == Intent.ACTION_VIEW || intent.action == Intent.ACTION_SEND -> {
intent.setClassName(applicationContext, HomeActivity::class.java.name)
if (!intent.getBooleanExtra(NotificationManager.RECEIVE_TABS_TAG, false)) {
intent.flags = Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TASK

Loading…
Cancel
Save