Merge pull request #2765 from PhilippC/bugfix/2371-autofill-not-working-with-compose-apps

Fix autofill with Compose apps
This commit is contained in:
PhilippC
2025-02-11 13:21:11 +01:00
committed by GitHub
2 changed files with 3 additions and 2 deletions

View File

@@ -86,6 +86,8 @@ namespace keepass2android.services.AutofillBase
ParseRecursive(autofillView, view, isManualRequest);
}
autofillView.PackageId = autofillView.PackageId ?? _structure.ActivityComponent.PackageName;
return autofillView;
}
@@ -122,7 +124,6 @@ namespace keepass2android.services.AutofillBase
}
autofillView.InputFields.Add(new ViewNodeInputField(viewNode));
var childrenSize = viewNode.ChildCount;
if (childrenSize > 0)
{