mirror of
https://github.com/bitwarden/android.git
synced 2024-12-25 02:18:27 +03:00
Removal of double-event block for known browsers since it's no longer necessary and was preventing the overlay from working with some browsers (#712)
This commit is contained in:
parent
c3649a9c80
commit
4b9cff2271
1 changed files with 0 additions and 5 deletions
|
@ -85,11 +85,6 @@ namespace Bit.Droid.Accessibility
|
|||
break;
|
||||
}
|
||||
|
||||
var isKnownBroswer = AccessibilityHelpers.SupportedBrowsers.ContainsKey(root.PackageName);
|
||||
if(e.EventType == EventTypes.ViewClicked && isKnownBroswer)
|
||||
{
|
||||
break;
|
||||
}
|
||||
if(!(e.Source?.Password ?? false) && !AccessibilityHelpers.IsUsernameEditText(root, e))
|
||||
{
|
||||
CancelOverlayPrompt();
|
||||
|
|
Loading…
Reference in a new issue