This commit is contained in:
Josia Pietsch 2025-03-13 15:38:00 +01:00
parent 8df9aae029
commit 3664159782
Signed by: jrpie
GPG key ID: E70B571D66986A2D

View file

@ -93,12 +93,17 @@ fun getUserFromId(userId: Int?, context: Context): UserHandle {
fun removeUnusedShortcuts(context: Context) {
val launcherApps = context.getSystemService(Service.LAUNCHER_APPS_SERVICE) as LauncherApps
fun getShortcuts(profile: UserHandle): List<ShortcutInfo>? {
return launcherApps.getShortcuts(
ShortcutQuery().apply {
setQueryFlags(ShortcutQuery.FLAG_MATCH_PINNED)
},
profile
)
return try {
launcherApps.getShortcuts(
ShortcutQuery().apply {
setQueryFlags(ShortcutQuery.FLAG_MATCH_PINNED)
},
profile
)
} catch (e: IllegalStateException) {
// https://github.com/jrpie/launcher/issues/116
return null
}
}
val userManager = context.getSystemService(Service.USER_SERVICE) as UserManager