1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-10-01 04:27:39 +02: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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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