fix missing paren

This commit is contained in:
Kyle Spearrin 2020-06-29 14:57:56 -04:00
parent 6526b2134a
commit c444da9a18
1 changed files with 1 additions and 1 deletions

View File

@ -896,7 +896,7 @@ export default class AutofillService implements AutofillServiceInterface {
return false;
}
const lowerValue = value.toLowerCase();
if (lowerValue.indexOf('onetimepassword') >= 0 {
if (lowerValue.indexOf('onetimepassword') >= 0) {
return false;
}
if (lowerValue.indexOf('password') < 0) {