Skip to content

Commit

Permalink
feat: 应用搜索忽略大小写 (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
lisonge committed Nov 5, 2023
1 parent 113c84c commit 67411fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/li/songe/gkd/ui/SubsVm.kt
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class SubsVm @Inject constructor(stateHandle: SavedStateHandle) : ViewModel() {
} else {
appAndConfigs.filter { a ->
(appInfoCache[a.t0.id]?.name ?: a.t0.name ?: a.t0.id).contains(
searchStr
searchStr, true
)
}
}
Expand Down

0 comments on commit 67411fe

Please sign in to comment.