Remove "name" from the list of username heuristics (#793)

This commit is contained in:
Fabian Henneke 2020-05-25 13:51:12 +02:00 committed by GitHub
parent bf688c28f9
commit 96ed53206e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

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

View file

@ -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"
)
}