Remove "name" from the list of username heuristics (#793)
This commit is contained in:
parent
bf688c28f9
commit
96ed53206e
2 changed files with 4 additions and 1 deletions
|
@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
### Changed
|
||||
- Reduce Autofill false positives on username fields by removing "name" from list of heuristic terms
|
||||
|
||||
## [1.8.1] - 2020-05-24
|
||||
|
||||
### Fixed
|
||||
|
|
|
@ -83,7 +83,7 @@ class FormField(
|
|||
"pass", "pswd", "pwd"
|
||||
)
|
||||
private val USERNAME_HEURISTIC_TERMS = listOf(
|
||||
"alias", "e-mail", "email", "login", "name", "user"
|
||||
"alias", "e-mail", "email", "login", "user"
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue