mirror of
https://github.com/bitwarden/android.git
synced 2025-12-10 09:56:45 -06:00
PM-25632: Ensure that we use lowercase email addresses when creating a fingerprint (#6227)
This commit is contained in:
parent
4b951a1df2
commit
4d20453d0f
@ -30,7 +30,7 @@ class AuthSdkSourceImpl(
|
|||||||
getClient()
|
getClient()
|
||||||
.auth()
|
.auth()
|
||||||
.newAuthRequest(
|
.newAuthRequest(
|
||||||
email = email,
|
email = email.lowercase(),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -42,7 +42,7 @@ class AuthSdkSourceImpl(
|
|||||||
.platform()
|
.platform()
|
||||||
.fingerprint(
|
.fingerprint(
|
||||||
req = FingerprintRequest(
|
req = FingerprintRequest(
|
||||||
fingerprintMaterial = email,
|
fingerprintMaterial = email.lowercase(),
|
||||||
publicKey = publicKey,
|
publicKey = publicKey,
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user