fix missing paren
This commit is contained in:
parent
6526b2134a
commit
c444da9a18
|
@ -896,7 +896,7 @@ export default class AutofillService implements AutofillServiceInterface {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
const lowerValue = value.toLowerCase();
|
const lowerValue = value.toLowerCase();
|
||||||
if (lowerValue.indexOf('onetimepassword') >= 0 {
|
if (lowerValue.indexOf('onetimepassword') >= 0) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (lowerValue.indexOf('password') < 0) {
|
if (lowerValue.indexOf('password') < 0) {
|
||||||
|
|
Loading…
Reference in New Issue