mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 18:08:26 +03:00
only prompt fingerprint if set
This commit is contained in:
parent
54141f77d6
commit
060e1a822f
2 changed files with 22 additions and 15 deletions
|
@ -46,6 +46,8 @@ namespace Bit.App.Pages
|
|||
public Entry PinEntry { get; set; }
|
||||
|
||||
public async Task PromptFingerprintAfterResumeAsync()
|
||||
{
|
||||
if(_vm.FingerprintLock)
|
||||
{
|
||||
await Task.Delay(500);
|
||||
if(!_promptedAfterResume)
|
||||
|
@ -54,6 +56,7 @@ namespace Bit.App.Pages
|
|||
await _vm?.PromptFingerprintAsync();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
protected override async void OnAppearing()
|
||||
{
|
||||
|
|
|
@ -250,6 +250,10 @@ namespace Bit.App.Pages
|
|||
|
||||
public async Task PromptFingerprintAsync()
|
||||
{
|
||||
if(!FingerprintLock)
|
||||
{
|
||||
return;
|
||||
}
|
||||
var success = await _platformUtilsService.AuthenticateFingerprintAsync(null,
|
||||
PinLock ? AppResources.PIN : AppResources.MasterPassword, () =>
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue