diff --git a/src/Android/AutofillService.cs b/src/Android/AutofillService.cs index 4dfcfc0d2..46cc451d8 100644 --- a/src/Android/AutofillService.cs +++ b/src/Android/AutofillService.cs @@ -253,9 +253,9 @@ namespace Bit.Android nodes.Add(n); } - for(int i = 0; i < n.ChildCount; i++) + for(var i = 0; i < n.ChildCount; i++) { - nodes.AddRange(GetWindowNodes(n.GetChild(i), e, condition, nodes)); + GetWindowNodes(n.GetChild(i), e, condition, nodes); } }