Skip to content

Commit

Permalink
fix: anyMatches not working (#765)
Browse files Browse the repository at this point in the history
  • Loading branch information
lisonge committed Nov 5, 2024
1 parent 03cdf98 commit 305c65b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/src/main/kotlin/li/songe/gkd/service/A11yContext.kt
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,8 @@ class A11yContext(
queryNode,
selector,
rule.matchOption,
) ?: break
)
if (resultNode != null) break
}
if (resultNode == null) return null
}
Expand Down

0 comments on commit 305c65b

Please sign in to comment.