improve app stability and refactor to get better logs

This commit is contained in:
Philipp Crocoll
2025-06-24 15:41:11 +02:00
parent 8d1195ac96
commit 0f98668bcd
7 changed files with 46 additions and 21 deletions

View File

@@ -476,8 +476,16 @@ namespace Kp2aAutofillParser
foreach (var field in autofillFields.HintMap.Values.Distinct())
{
if (field == null || field.AutofillHints == null)
{
continue;
}
foreach (var hint in field.AutofillHints)
{
if (hint == null)
{
continue;
}
if (GetPartitionIndex(hint) == partitionIndex)
{
filteredCollection.Add(field);