mirror of
https://github.com/bitwarden/android.git
synced 2024-12-25 02:18:27 +03:00
delay credential clear when no passwords
This commit is contained in:
parent
7cca53bcc5
commit
f231565163
1 changed files with 10 additions and 1 deletions
|
@ -219,9 +219,18 @@ namespace Bit.Android
|
||||||
cancelNotification = false;
|
cancelNotification = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
AutofillActivity.LastCredentials = null;
|
AutofillActivity.LastCredentials = null;
|
||||||
|
}
|
||||||
|
else if(AutofillActivity.LastCredentials != null)
|
||||||
|
{
|
||||||
|
System.Threading.Tasks.Task.Run(async () =>
|
||||||
|
{
|
||||||
|
await System.Threading.Tasks.Task.Delay(1000);
|
||||||
|
AutofillActivity.LastCredentials = null;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
passwordNodes.Dispose();
|
passwordNodes.Dispose();
|
||||||
return cancelNotification;
|
return cancelNotification;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue