ignore "edit" fields on autofill

This commit is contained in:
Kyle Spearrin 2018-04-25 23:44:32 -04:00
parent 1e5f186b58
commit f7570122c6
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ namespace Bit.Android.Autofill
{
private List<Field> _passwordFields = null;
private List<Field> _usernameFields = null;
private HashSet<string> _ignoreSearchTerms = new HashSet<string> { "search", "find", "recipient" };
private HashSet<string> _ignoreSearchTerms = new HashSet<string> { "search", "find", "recipient", "edit" };
private HashSet<string> _passwordTerms = new HashSet<string> { "password", "pswd" };
public List<AutofillId> AutofillIds { get; private set; } = new List<AutofillId>();