1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-13 14:53:18 +00:00

autofill fixes

This commit is contained in:
Kyle Spearrin
2017-02-02 23:36:40 -05:00
parent 8c6d395d89
commit d067de086d
2 changed files with 20 additions and 1 deletions

View File

@@ -55,7 +55,7 @@ namespace Bit.Android
var eventType = e.EventType;
var packageName = e.PackageName;
if(packageName == SystemUiPackage || packageName == BitwardenPackage)
if(packageName == SystemUiPackage)
{
return;
}
@@ -64,6 +64,12 @@ namespace Bit.Android
{
case EventTypes.WindowContentChanged:
case EventTypes.WindowStateChanged:
if(packageName == BitwardenPackage)
{
CancelNotification();
break;
}
var cancelNotification = true;
var root = RootInActiveWindow;
var passwordNodes = GetWindowNodes(root, e, n => n.Password);