mirror of
https://github.com/element-hq/element-android
synced 2024-11-27 20:06:51 +03:00
Open url on external browser task
This commit is contained in:
parent
c22d3fbedc
commit
31ec8d39d8
1 changed files with 2 additions and 0 deletions
|
@ -76,6 +76,8 @@ fun openUrlInExternalBrowser(context: Context, url: String?) {
|
|||
fun openUrlInExternalBrowser(context: Context, uri: Uri?) {
|
||||
uri?.let {
|
||||
val browserIntent = Intent(Intent.ACTION_VIEW, it).apply {
|
||||
// Open activity on browser task and not on element task
|
||||
flags = Intent.FLAG_ACTIVITY_NEW_TASK
|
||||
putExtra(Browser.EXTRA_APPLICATION_ID, context.packageName)
|
||||
putExtra(Browser.EXTRA_CREATE_NEW_TAB, true)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue