mirror of
https://github.com/bitwarden/mobile.git
synced 2024-12-03 13:23:30 +01:00
return from autofill events when device is asleep
This commit is contained in:
parent
40cfb9876d
commit
158bf873bd
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user