Add "alias" to the username heuristic terms (#676)

This commit is contained in:
Fabian Henneke 2020-03-28 16:00:18 +01:00 committed by GitHub
parent 453cf58b38
commit 29427a061b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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(
"e-mail", "email", "login", "name", "user" "alias", "e-mail", "email", "login", "name", "user"
) )
} }