fix: anyMatches not working (#765)
Some checks are pending
Build-Apk / build (push) Waiting to run

This commit is contained in:
二刺螈 2024-11-05 17:13:01 +08:00
parent 03cdf98f09
commit 305c65b776

View File

@ -541,7 +541,8 @@ class A11yContext(
queryNode,
selector,
rule.matchOption,
) ?: break
)
if (resultNode != null) break
}
if (resultNode == null) return null
}