For #4198 - Include Intent.ACTION_SEND to open to browser

nightly-build-test
Emily Kager 5 years ago committed by Emily Kager
parent 026dcb01f5
commit ec0bd85f6d

@ -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