PM-25632: Ensure that we use lowercase email addresses when creating a fingerprint (#6227)

This commit is contained in:
David Perez 2025-12-04 09:34:17 -06:00 committed by GitHub
parent 4b951a1df2
commit 4d20453d0f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -30,7 +30,7 @@ class AuthSdkSourceImpl(
getClient()
.auth()
.newAuthRequest(
email = email,
email = email.lowercase(),
)
}
@ -42,7 +42,7 @@ class AuthSdkSourceImpl(
.platform()
.fingerprint(
req = FingerprintRequest(
fingerprintMaterial = email,
fingerprintMaterial = email.lowercase(),
publicKey = publicKey,
),
)