mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +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),
|
Number = settingsShim.GetValueOrDefault("pwGenerator:numbers", true),
|
||||||
MinNumber = settingsShim.GetValueOrDefault("pwGenerator:minNumbers", 0),
|
MinNumber = settingsShim.GetValueOrDefault("pwGenerator:minNumbers", 0),
|
||||||
Special = settingsShim.GetValueOrDefault("pwGenerator:special", true),
|
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);
|
int? lockOptionsSeconds = settingsShim.GetValueOrDefault("setting:lockSeconds", -2);
|
||||||
|
|
Loading…
Reference in a new issue