mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 17:53:39 +00:00
trim email also
This commit is contained in:
@@ -199,7 +199,7 @@ export class AuthService {
|
||||
}
|
||||
|
||||
async makePreloginKey(masterPassword: string, email: string): Promise<SymmetricCryptoKey> {
|
||||
email = email.toLowerCase();
|
||||
email = email.trim().toLowerCase();
|
||||
this.kdf = null;
|
||||
this.kdfIterations = null;
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user