mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
prevent multiple main activities from autofill
This commit is contained in:
parent
366b9ddc4a
commit
67fa653d06
1 changed files with 11 additions and 0 deletions
|
@ -3,12 +3,16 @@ using Android.Content;
|
|||
using Android.OS;
|
||||
using Android.Runtime;
|
||||
using Android.Views;
|
||||
using System;
|
||||
|
||||
namespace Bit.Android
|
||||
{
|
||||
[Activity(Theme = "@style/BitwardenTheme.Splash", WindowSoftInputMode = SoftInput.StateHidden)]
|
||||
public class AutofillActivity : Activity
|
||||
{
|
||||
private static TimeSpan _retrySpan = TimeSpan.FromSeconds(2);
|
||||
|
||||
private DateTime? _lastLaunch = null;
|
||||
private string _lastQueriedUri;
|
||||
|
||||
public static AutofillCredentials LastCredentials { get; set; }
|
||||
|
@ -83,6 +87,13 @@ namespace Bit.Android
|
|||
|
||||
private void LaunchMainActivity(Intent callingIntent, int requestCode)
|
||||
{
|
||||
var now = DateTime.UtcNow;
|
||||
if(_lastLaunch.HasValue && (now - _lastLaunch.Value <= _retrySpan))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
_lastLaunch = now;
|
||||
_lastQueriedUri = callingIntent?.GetStringExtra("uri");
|
||||
if(_lastQueriedUri == null)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue