Skip to content

Commit

Permalink
Fix: Fixed the search feature to only show items not hidden.
Browse files Browse the repository at this point in the history
close #199
  • Loading branch information
HeCodes2Much authored Dec 3, 2024
1 parent fedcca2 commit 846ba48
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ interface AppInfoDAO {
@Query("SELECT * FROM app WHERE is_lock = 1 ORDER BY app_order ASC")
fun getLockAppsFlow(): Flow<List<AppInfo>>

@Query("SELECT * FROM app ORDER BY app_name COLLATE NOCASE ASC")
@Query("SELECT * FROM app WHERE is_hidden = 0 ORDER BY app_name COLLATE NOCASE ASC")
fun searchApps(): Flow<List<AppInfo>>

@Update
Expand Down

0 comments on commit 846ba48

Please sign in to comment.