From cfd413f1f45876a3f309811970d72d363cb3c077 Mon Sep 17 00:00:00 2001 From: Philipp Crocoll Date: Mon, 13 Feb 2023 09:42:55 +0100 Subject: [PATCH] add more hints for password fields to fix issues with autofill (maybe on newer Android versions only), closes #2184 --- src/keepass2android/services/AutofillBase/StructureParser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) ||