1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-10-02 04:37:50 +02:00

FillableForLogin check last

This commit is contained in:
Kyle Spearrin 2017-11-17 23:41:53 -05:00
parent 84ea28adfa
commit 73e5fb6314

View File

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