return from autofill events when device is asleep

This commit is contained in:
Kyle Spearrin 2017-08-15 12:28:48 -04:00
parent 40cfb9876d
commit 158bf873bd
1 changed files with 6 additions and 0 deletions

View File

@ -69,6 +69,12 @@ namespace Bit.Android
public override void OnAccessibilityEvent(AccessibilityEvent e)
{
var powerManager = (PowerManager)GetSystemService(PowerService);
if(!powerManager.IsInteractive)
{
return;
}
try
{
var root = RootInActiveWindow;