Skip to content

Commit

Permalink
ui: fix search issue in app info screen
Browse files Browse the repository at this point in the history
  • Loading branch information
hussainmohd-a committed Oct 22, 2024
1 parent a33539f commit dd7c04f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class AppInfoViewModel(private val appInfoDAO: AppInfoDAO) : ViewModel() {
if (filter == bypassFilter) {
return setOf(1)
}
return setOf(0, 1)
return setOf() // empty set (as query uses or condition)
}

private fun allApps(searchString: String): LiveData<PagingData<AppInfo>> {
Expand Down

0 comments on commit dd7c04f

Please sign in to comment.