mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
exclude TextFlagMultiLine from autofill detection
This commit is contained in:
parent
05f6d6d156
commit
6d11921f45
1 changed files with 7 additions and 0 deletions
|
@ -304,6 +304,13 @@ namespace Bit.Android.Autofill
|
||||||
f.InputType.HasFlag(InputTypes.TextVariationVisiblePassword) ||
|
f.InputType.HasFlag(InputTypes.TextVariationVisiblePassword) ||
|
||||||
f.InputType.HasFlag(InputTypes.TextVariationWebPassword);
|
f.InputType.HasFlag(InputTypes.TextVariationWebPassword);
|
||||||
|
|
||||||
|
// For whatever reason, multi-line input types are coming through with TextVariationPassword flags
|
||||||
|
if(inputTypePassword && f.InputType.HasFlag(InputTypes.TextVariationPassword) &&
|
||||||
|
f.InputType.HasFlag(InputTypes.TextFlagMultiLine))
|
||||||
|
{
|
||||||
|
inputTypePassword = false;
|
||||||
|
}
|
||||||
|
|
||||||
if(!inputTypePassword && f.HtmlInfo != null && f.HtmlInfo.Tag == "input" &&
|
if(!inputTypePassword && f.HtmlInfo != null && f.HtmlInfo.Tag == "input" &&
|
||||||
(f.HtmlInfo.Attributes?.Any() ?? false))
|
(f.HtmlInfo.Attributes?.Any() ?? false))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue