1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-10-05 05:08:03 +02:00

dont offer autofill in bitwarden app

This commit is contained in:
Kyle Spearrin 2017-11-17 10:05:13 -05:00
parent b52134e9ee
commit cb22572f2b

View File

@ -30,7 +30,8 @@ namespace Bit.Android.Autofill
var parser = new Parser(structure);
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;
}