mirror of
https://github.com/bitwarden/mobile
synced 2025-12-23 03:33:59 +00:00
[SG-1022] Update min password requirements to 12 char (#2368)
* work: adjusted numbers to 12 * work: made string dynamic * fix: spaces
This commit is contained in:
@@ -162,7 +162,7 @@ namespace Bit.App.Pages
|
||||
{
|
||||
if (MasterPassword.Length < Constants.MasterPasswordMinimumChars)
|
||||
{
|
||||
await _platformUtilsService.ShowDialogAsync(AppResources.MasterPasswordLengthValMessage,
|
||||
await _platformUtilsService.ShowDialogAsync(string.Format(AppResources.MasterPasswordLengthValMessageX, Constants.MasterPasswordMinimumChars),
|
||||
AppResources.MasterPasswordPolicyValidationTitle, AppResources.Ok);
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user