mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 07:05:35 +03:00
[PM-12711] Auto-Fill selection bug fix (#3981)
This commit is contained in:
parent
aaa541dd19
commit
70e75b910c
1 changed files with 4 additions and 1 deletions
|
@ -36,7 +36,10 @@ fun createAutofillSelectionIntent(
|
|||
): Intent =
|
||||
Intent(context, MainActivity::class.java)
|
||||
.apply {
|
||||
// This helps prevent a crash when using the accessibility framework
|
||||
if (framework == AutofillSelectionData.Framework.ACCESSIBILITY) {
|
||||
setFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
|
||||
}
|
||||
putExtra(
|
||||
AUTOFILL_BUNDLE_KEY,
|
||||
bundleOf(
|
||||
|
|
Loading…
Reference in a new issue