mirror of
https://github.com/bitwarden/mobile
synced 2025-12-15 15:53:44 +00:00
Fix for password unlock for autofill and share-to-send on Android (#1453)
This commit is contained in:
@@ -398,7 +398,7 @@ namespace Bit.App.Pages
|
||||
|
||||
if (IsAddFromShare && Device.RuntimePlatform == Device.Android)
|
||||
{
|
||||
_deviceActionService.CloseMainApp();
|
||||
CloseMainApp();
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -429,6 +429,14 @@ 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);
|
||||
|
||||
Reference in New Issue
Block a user