mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
autofill fixes for password focus
This commit is contained in:
parent
e651a13980
commit
84a6ee8cbf
1 changed files with 8 additions and 3 deletions
|
@ -121,8 +121,13 @@ namespace Bit.Android
|
||||||
if(uri != _lastNotificationUri)
|
if(uri != _lastNotificationUri)
|
||||||
{
|
{
|
||||||
CancelNotification(notificationManager);
|
CancelNotification(notificationManager);
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
else if(uri.StartsWith(App.Constants.AndroidAppProtocol))
|
||||||
|
{
|
||||||
|
CancelNotification(notificationManager, 60000);
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(e.PackageName == BitwardenPackage)
|
if(e.PackageName == BitwardenPackage)
|
||||||
|
@ -220,9 +225,9 @@ namespace Bit.Android
|
||||||
return cancelNotification;
|
return cancelNotification;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void CancelNotification(NotificationManager notificationManager)
|
public void CancelNotification(NotificationManager notificationManager, long limit = 250)
|
||||||
{
|
{
|
||||||
if(Java.Lang.JavaSystem.CurrentTimeMillis() - _lastNotificationTime < 250)
|
if(Java.Lang.JavaSystem.CurrentTimeMillis() - _lastNotificationTime < limit)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue