mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 18:08:26 +03:00
set passphrase defaults
This commit is contained in:
parent
5eee358059
commit
3e50461ea7
1 changed files with 3 additions and 1 deletions
|
@ -141,7 +141,9 @@ namespace Bit.App.Migration
|
|||
Number = settingsShim.GetValueOrDefault("pwGenerator:numbers", true),
|
||||
MinNumber = settingsShim.GetValueOrDefault("pwGenerator:minNumbers", 0),
|
||||
Special = settingsShim.GetValueOrDefault("pwGenerator:special", true),
|
||||
MinSpecial = settingsShim.GetValueOrDefault("pwGenerator:minSpecial", 0)
|
||||
MinSpecial = settingsShim.GetValueOrDefault("pwGenerator:minSpecial", 0),
|
||||
WordSeparator = "-",
|
||||
NumWords = 3
|
||||
});
|
||||
|
||||
int? lockOptionsSeconds = settingsShim.GetValueOrDefault("setting:lockSeconds", -2);
|
||||
|
|
Loading…
Reference in a new issue