mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
ignore recipient search fields
This commit is contained in:
parent
2ad709dae4
commit
d17ca1686e
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ namespace Bit.Android.Autofill
|
||||||
{
|
{
|
||||||
private List<Field> _passwordFields = null;
|
private List<Field> _passwordFields = null;
|
||||||
private List<Field> _usernameFields = null;
|
private List<Field> _usernameFields = null;
|
||||||
private HashSet<string> _ignoreSearchTerms = new HashSet<string> { "search", "find" };
|
private HashSet<string> _ignoreSearchTerms = new HashSet<string> { "search", "find", "recipient" };
|
||||||
private HashSet<string> _passwordTerms = new HashSet<string> { "password", "pswd" };
|
private HashSet<string> _passwordTerms = new HashSet<string> { "password", "pswd" };
|
||||||
|
|
||||||
public HashSet<int> Ids { get; private set; } = new HashSet<int>();
|
public HashSet<int> Ids { get; private set; } = new HashSet<int>();
|
||||||
|
|
Loading…
Reference in a new issue