1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-11 05:43:30 +00:00

bugfixes for lock block when setting timeout to immediate (#1455)

This commit is contained in:
Matt Portune
2021-07-12 10:58:17 -04:00
committed by GitHub
parent 1f57ba6c50
commit d8e68a266c
6 changed files with 32 additions and 13 deletions

View File

@@ -398,7 +398,7 @@ namespace Bit.App.Pages
if (IsAddFromShare && Device.RuntimePlatform == Device.Android)
{
CloseMainApp();
_deviceActionService.CloseMainApp();
}
else
{
@@ -429,14 +429,6 @@ namespace Bit.App.Pages
return false;
}
public void CloseMainApp()
{
if (Device.RuntimePlatform == Device.Android)
{
_deviceActionService.CloseMainApp();
}
}
public async Task<bool> RemovePasswordAsync()
{
return await AppHelpers.RemoveSendPasswordAsync(SendId);