Skip to content

Commit

Permalink
fix: set matchAnyApp default value to false
Browse files Browse the repository at this point in the history
  • Loading branch information
lisonge committed Dec 25, 2023
1 parent 06e37e3 commit 55906b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/kotlin/li/songe/gkd/util/SubsState.kt
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ val allRulesFlow by lazy {
)
}

val matchAnyApp = ruleRaw.matchAnyApp ?: groupRaw.matchAnyApp ?: false
val matchAnyApp = ruleRaw.matchAnyApp ?: groupRaw.matchAnyApp ?: true

val quickFind =
ruleRaw.quickFind ?: groupRaw.quickFind ?: false
Expand Down

0 comments on commit 55906b3

Please sign in to comment.