add more hints for password fields to fix issues with autofill (maybe on newer Android versions only), closes #2184
This commit is contained in:
@@ -190,7 +190,7 @@ namespace keepass2android.services.AutofillBase
|
|||||||
}
|
}
|
||||||
return result;
|
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)
|
private static bool HasPasswordHint(AssistStructure.ViewNode f)
|
||||||
{
|
{
|
||||||
return ContainsAny(f.IdEntry, _passwordHints) ||
|
return ContainsAny(f.IdEntry, _passwordHints) ||
|
||||||
|
|||||||
Reference in New Issue
Block a user