diff --git a/src/keepass2android/services/AutofillBase/StructureParser.cs b/src/keepass2android/services/AutofillBase/StructureParser.cs index 29dd7416..c85e56bf 100644 --- a/src/keepass2android/services/AutofillBase/StructureParser.cs +++ b/src/keepass2android/services/AutofillBase/StructureParser.cs @@ -190,7 +190,7 @@ namespace keepass2android.services.AutofillBase } return result; } - private static readonly HashSet _passwordHints = new HashSet { "password","passwort" }; + private static readonly HashSet _passwordHints = new HashSet { "password","passwort", "passwordAuto", "pswd" }; private static bool HasPasswordHint(AssistStructure.ViewNode f) { return ContainsAny(f.IdEntry, _passwordHints) ||