add more hints for password fields to fix issues with autofill (maybe on newer Android versions only), closes #2184

This commit is contained in:
Philipp Crocoll
2023-02-13 09:42:55 +01:00
parent 30df03eec6
commit cfd413f1f4

View File

@@ -190,7 +190,7 @@ namespace keepass2android.services.AutofillBase
}
return result;
}
private static readonly HashSet<string> _passwordHints = new HashSet<string> { "password","passwort" };
private static readonly HashSet<string> _passwordHints = new HashSet<string> { "password","passwort", "passwordAuto", "pswd" };
private static bool HasPasswordHint(AssistStructure.ViewNode f)
{
return ContainsAny(f.IdEntry, _passwordHints) ||