mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-26 12:16:07 +01:00
bail out if recursiveIterations >= 100
This commit is contained in:
parent
ee8c2b5272
commit
e875b530b1
@ -446,7 +446,7 @@ namespace Bit.Android
|
||||
nodes = new NodeList();
|
||||
}
|
||||
|
||||
if(n != null)
|
||||
if(n != null && recursiveIterations < 100)
|
||||
{
|
||||
var dispose = disposeIfUnused;
|
||||
if(n.WindowId == e.WindowId && !(n.ViewIdResourceName?.StartsWith(SystemUiPackage) ?? false) && condition(n))
|
||||
@ -457,7 +457,6 @@ namespace Bit.Android
|
||||
|
||||
for(var i = 0; i < n.ChildCount; i++)
|
||||
{
|
||||
System.Threading.Thread.Sleep(10);
|
||||
var childNode = n.GetChild(i);
|
||||
GetWindowNodes(childNode, e, condition, true, nodes, recursiveIterations++);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user