mirror of
https://github.com/bitwarden/android.git
synced 2024-12-25 02:18:27 +03:00
don't allow device PIN fallback
This commit is contained in:
parent
ae52922698
commit
0d6cc91b67
2 changed files with 1 additions and 2 deletions
|
@ -320,7 +320,7 @@ namespace Bit.App.Pages
|
|||
new SettingsPageListItem { Name = AppResources.LockNow },
|
||||
new SettingsPageListItem { Name = AppResources.TwoStepLogin }
|
||||
};
|
||||
if(_supportsFingerprint)
|
||||
if(_supportsFingerprint || _fingerprint)
|
||||
{
|
||||
var fingerprintName = AppResources.Fingerprint;
|
||||
if(Device.RuntimePlatform == Device.iOS)
|
||||
|
|
|
@ -221,7 +221,6 @@ namespace Bit.App.Services
|
|||
}
|
||||
var fingerprintRequest = new AuthenticationRequestConfiguration(text)
|
||||
{
|
||||
AllowAlternativeAuthentication = true,
|
||||
CancelTitle = AppResources.Cancel,
|
||||
FallbackTitle = fallbackText
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue