summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorFabian Henneke <FabianHenneke@users.noreply.github.com>2020-03-28 16:00:18 +0100
committerGitHub <noreply@github.com>2020-03-28 20:30:18 +0530
commit29427a061b33bf25e5c921faeeea2e93129d703d (patch)
tree530f7e39311ad64d0830f2f1328dd31ace4a9c62 /app
parent453cf58b385b6e6d27d7d827c793cbb2a6dbbf3a (diff)
Add "alias" to the username heuristic terms (#676)
Diffstat (limited to 'app')
-rw-r--r--app/src/main/java/com/zeapo/pwdstore/autofill/oreo/FormField.kt2
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 cb60d624..beb9b612 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
@@ -83,7 +83,7 @@ class FormField(
"pass", "pswd", "pwd"
)
private val USERNAME_HEURISTIC_TERMS = listOf(
- "e-mail", "email", "login", "name", "user"
+ "alias", "e-mail", "email", "login", "name", "user"
)
}