mirror of
https://github.com/bitwarden/android.git
synced 2026-06-02 18:59:15 -05:00
BIT-2015 BIT-2016: Fix min number and min special chars not propagating (#1163)
This commit is contained in:
committed by
Álison Fernandes
parent
3394ff4648
commit
0791d787e0
@@ -522,8 +522,8 @@ class GeneratorViewModel @Inject constructor(
|
||||
avoidAmbiguous = password.avoidAmbiguousChars,
|
||||
minLowercase = null,
|
||||
minUppercase = null,
|
||||
minNumber = null,
|
||||
minSpecial = null,
|
||||
minNumber = password.minNumbers.toUByte(),
|
||||
minSpecial = password.minSpecial.toUByte(),
|
||||
)
|
||||
val shouldSave = !password.isUserInteracting
|
||||
|
||||
|
||||
Reference in New Issue
Block a user