ignore @confirm fields

This commit is contained in:
Philipp Crocoll 2016-01-08 20:20:48 +01:00
parent 8fa15e3ba6
commit 41d6b3ac5e

View File

@ -89,7 +89,7 @@ namespace keepass2android
String type = templateEntry.Strings.ReadSafe("_etm_type_" + fieldName);
if (type == "Divider")
if ((type == "Divider") || (type == "@confirm"))
continue;
bool protectedField = type.StartsWith("Protected");