Fix incognito mode disabled after URL intent launched (#5533)
This commit is contained in:
parent
13d39fc942
commit
2423a70abd
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ class DeepLinkActivity : Activity() {
|
|||
super.onCreate(savedInstanceState)
|
||||
|
||||
intent.apply {
|
||||
flags = flags or Intent.FLAG_ACTIVITY_CLEAR_TASK or Intent.FLAG_ACTIVITY_NEW_TASK
|
||||
flags = flags or Intent.FLAG_ACTIVITY_CLEAR_TOP or Intent.FLAG_ACTIVITY_NEW_TASK
|
||||
setClass(applicationContext, MainActivity::class.java)
|
||||
}
|
||||
startActivity(intent)
|
||||
|
|
Reference in a new issue