diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2020-05-06 13:59:48 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-06 13:59:48 +0530 |
commit | ed3312b3032ede9786d049706e74a60c973b7b72 (patch) | |
tree | fd41b3aae6fdaca385b93b666b4aa0c2e0cb41e6 | |
parent | feab56994d874df21f68eeddfca8d8a7ecbf75d2 (diff) |
PasswordEntry: add user to the potential candidates for username (#766)
-rw-r--r-- | CHANGELOG.md | 3 | ||||
-rw-r--r-- | app/src/main/java/com/zeapo/pwdstore/PasswordEntry.kt | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b8603df..9497f3d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ All notable changes to this project will be documented in this file. ### Added - Allow user to abort password move when it is replacing an existing file +### Fixed +- Add the following fields to encrypted username detection: user, account, email, name, handle, id, identity. + ## [1.7.2] - 2020-04-29 ### Added diff --git a/app/src/main/java/com/zeapo/pwdstore/PasswordEntry.kt b/app/src/main/java/com/zeapo/pwdstore/PasswordEntry.kt index 002c381d..fa1055f1 100644 --- a/app/src/main/java/com/zeapo/pwdstore/PasswordEntry.kt +++ b/app/src/main/java/com/zeapo/pwdstore/PasswordEntry.kt @@ -168,6 +168,7 @@ class PasswordEntry(private val content: String) { val USERNAME_FIELDS = arrayOf( "login:", "username:", + "user:", "account:", "email:", "name:", |