1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 17:53:39 +00:00

trim email also

This commit is contained in:
Kyle Spearrin
2018-09-08 08:13:33 -04:00
parent eb48abbcf6
commit 773c51901f
2 changed files with 2 additions and 2 deletions

View File

@@ -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 {