1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-15 15:53:44 +00:00

Add TextVariationEmailAddress

This commit is contained in:
larena1
2023-02-20 17:25:36 +01:00
committed by GitHub
parent 8577765668
commit c4790eb78e

View File

@@ -337,7 +337,8 @@ namespace Bit.Droid.Autofill
private bool FieldIsUsername(Field f)
{
return f.InputType.HasFlag(InputTypes.TextVariationWebEmailAddress) || FieldHasUsernameTerms(f);
return f.InputType.HasFlag(InputTypes.TextVariationEmailAddress) ||
f.InputType.HasFlag(InputTypes.TextVariationWebEmailAddress) || FieldHasUsernameTerms(f);
}
private bool FieldHasUsernameTerms(Field f)