1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-28 06:03:40 +00: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:
Matt Portune
2020-01-29 09:59:35 -05:00
committed by GitHub
parent c3649a9c80
commit 4b9cff2271

View File

@@ -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();