1
0
mirror of https://github.com/bitwarden/mobile synced 2025-02-05 12:58:51 +01:00

dont immediatly prompt biometric when locked

This commit is contained in:
Kyle Spearrin 2019-10-30 08:08:15 -04:00
parent 59d5314164
commit 0cdc138ba3

View File

@ -396,6 +396,11 @@ namespace Bit.App
autoPromptFingerprint = false;
}
}
else if(autoPromptFingerprint && Device.RuntimePlatform == Device.Android &&
_deviceActionService.UseNativeBiometric())
{
autoPromptFingerprint = false;
}
PreviousPageInfo lastPageBeforeLock = null;
if(Current.MainPage is TabbedPage tabbedPage && tabbedPage.Navigation.ModalStack.Count > 0)
{