mirror of
https://github.com/android-password-store/Android-Password-Store
synced 2025-08-30 22:05:19 +00:00
Remove "name" from the list of username heuristics (#793)
This commit is contained in:
@@ -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
|
||||||
|
@@ -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"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user