diff options
-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:", |