mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
fix lock checks on sleep of app
This commit is contained in:
parent
9164c9b946
commit
2062a284e3
1 changed files with 15 additions and 4 deletions
|
@ -187,9 +187,13 @@ namespace Bit.App
|
|||
{
|
||||
System.Diagnostics.Debug.WriteLine("XF App: OnSleep");
|
||||
if(Device.RuntimePlatform == Device.Android)
|
||||
{
|
||||
var isLocked = await _lockService.IsLockedAsync();
|
||||
if(!isLocked)
|
||||
{
|
||||
await _storageService.SaveAsync(Constants.LastActiveKey, DateTime.UtcNow);
|
||||
SetTabsPageFromAutofill();
|
||||
}
|
||||
SetTabsPageFromAutofill(isLocked);
|
||||
await SleptAsync();
|
||||
}
|
||||
}
|
||||
|
@ -319,7 +323,7 @@ namespace Bit.App
|
|||
}
|
||||
}
|
||||
|
||||
private void SetTabsPageFromAutofill()
|
||||
private void SetTabsPageFromAutofill(bool isLocked)
|
||||
{
|
||||
if(Device.RuntimePlatform == Device.Android && !string.IsNullOrWhiteSpace(_appOptions.Uri) &&
|
||||
!_appOptions.FromAutofillFramework)
|
||||
|
@ -328,8 +332,15 @@ namespace Bit.App
|
|||
{
|
||||
Device.BeginInvokeOnMainThread(() =>
|
||||
{
|
||||
Current.MainPage = new TabsPage();
|
||||
_appOptions.Uri = null;
|
||||
if(isLocked)
|
||||
{
|
||||
Current.MainPage = new NavigationPage(new LockPage());
|
||||
}
|
||||
else
|
||||
{
|
||||
Current.MainPage = new TabsPage();
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue