mirror of
https://github.com/bitwarden/android.git
synced 2024-12-25 18:38:27 +03:00
Hide Master Pass On Restart for Key Connector (#1650)
This commit is contained in:
parent
3e0e620bb7
commit
1c006d6218
1 changed files with 7 additions and 3 deletions
|
@ -319,9 +319,13 @@ namespace Bit.App.Pages
|
||||||
AppResources.SetPINDescription, null, AppResources.Submit, AppResources.Cancel, true);
|
AppResources.SetPINDescription, null, AppResources.Submit, AppResources.Cancel, true);
|
||||||
if (!string.IsNullOrWhiteSpace(pin))
|
if (!string.IsNullOrWhiteSpace(pin))
|
||||||
{
|
{
|
||||||
var masterPassOnRestart = await _platformUtilsService.ShowDialogAsync(
|
var masterPassOnRestart = false;
|
||||||
AppResources.PINRequireMasterPasswordRestart, AppResources.UnlockWithPIN,
|
if (!await _keyConnectorService.GetUsesKeyConnector())
|
||||||
AppResources.Yes, AppResources.No);
|
{
|
||||||
|
masterPassOnRestart = await _platformUtilsService.ShowDialogAsync(
|
||||||
|
AppResources.PINRequireMasterPasswordRestart, AppResources.UnlockWithPIN,
|
||||||
|
AppResources.Yes, AppResources.No);
|
||||||
|
}
|
||||||
|
|
||||||
var kdf = await _userService.GetKdfAsync();
|
var kdf = await _userService.GetKdfAsync();
|
||||||
var kdfIterations = await _userService.GetKdfIterationsAsync();
|
var kdfIterations = await _userService.GetKdfIterationsAsync();
|
||||||
|
|
Loading…
Reference in a new issue