1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-24 04:04:34 +00:00

parsed ShouldAutofill with app URL blacklist

This commit is contained in:
Kyle Spearrin
2019-02-10 22:16:16 -05:00
parent 4b9fa5041c
commit b0cabbbfc2
3 changed files with 16 additions and 2 deletions

View File

@@ -34,8 +34,7 @@ namespace Bit.Android.Autofill
var parser = new Parser(structure);
parser.Parse();
if(string.IsNullOrWhiteSpace(parser.Uri) || parser.Uri == "androidapp://com.x8bit.bitwarden" ||
parser.Uri == "androidapp://android" || !parser.FieldCollection.Fillable)
if(!parser.ShouldAutofill)
{
return;
}