mirror of
https://github.com/bitwarden/android.git
synced 2024-12-25 02:18:27 +03:00
dont offer autofill in bitwarden app
This commit is contained in:
parent
b52134e9ee
commit
cb22572f2b
1 changed files with 2 additions and 1 deletions
|
@ -30,7 +30,8 @@ namespace Bit.Android.Autofill
|
||||||
var parser = new Parser(structure);
|
var parser = new Parser(structure);
|
||||||
parser.ParseForFill();
|
parser.ParseForFill();
|
||||||
|
|
||||||
if(!parser.FieldCollection.Fields.Any() || string.IsNullOrWhiteSpace(parser.Uri))
|
if(!parser.FieldCollection.Fields.Any() || string.IsNullOrWhiteSpace(parser.Uri) ||
|
||||||
|
parser.Uri == "androidapp://com.x8bit.bitwarden")
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue