diff options
author | Fabian Henneke <FabianHenneke@users.noreply.github.com> | 2020-03-25 18:00:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-25 18:00:44 +0100 |
commit | 973e023dda3caf17fe024b9ba7f1872c5527e654 (patch) | |
tree | 3b6b7700ff34ded3b6e7ac8069f229dbd292ba0e | |
parent | 5164b6951bbeaa025d92a0a5eb2f4c0250494988 (diff) |
Add "pass" as a hint pattern for password fields (#661)
-rw-r--r-- | app/src/main/java/com/zeapo/pwdstore/autofill/oreo/FormField.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/java/com/zeapo/pwdstore/autofill/oreo/FormField.kt b/app/src/main/java/com/zeapo/pwdstore/autofill/oreo/FormField.kt index cf2937f3..8a3380cc 100644 --- a/app/src/main/java/com/zeapo/pwdstore/autofill/oreo/FormField.kt +++ b/app/src/main/java/com/zeapo/pwdstore/autofill/oreo/FormField.kt @@ -80,7 +80,7 @@ class FormField( "search", "find", "captcha" ) private val PASSWORD_HEURISTIC_TERMS = listOf( - "password", "pwd", "pswd", "passwort" + "pass", "pwd", "pswd" ) private val USERNAME_HEURISTIC_TERMS = listOf( "user", "name", "email" |