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
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] ## [Unreleased]
### Changed
- Reduce Autofill false positives on username fields by removing "name" from list of heuristic terms
## [1.8.1] - 2020-05-24 ## [1.8.1] - 2020-05-24
### Fixed ### Fixed

View File

@@ -83,7 +83,7 @@ class FormField(
"pass", "pswd", "pwd" "pass", "pswd", "pwd"
) )
private val USERNAME_HEURISTIC_TERMS = listOf( private val USERNAME_HEURISTIC_TERMS = listOf(
"alias", "e-mail", "email", "login", "name", "user" "alias", "e-mail", "email", "login", "user"
) )
} }