From 6859ae1d1bccaff531627095fb6e830020d295f5 Mon Sep 17 00:00:00 2001 From: Jackson Coxson Date: Sat, 29 Mar 2025 10:27:57 -0600 Subject: [PATCH] Only fetch user installed apps --- StikJIT/idevice/applist.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/StikJIT/idevice/applist.m b/StikJIT/idevice/applist.m index ab947d1b..43c8af13 100644 --- a/StikJIT/idevice/applist.m +++ b/StikJIT/idevice/applist.m @@ -26,7 +26,7 @@ void *apps = NULL; size_t apps_len = 0; - err = installation_proxy_get_apps(client, NULL, NULL, 0, &apps, &apps_len); + err = installation_proxy_get_apps(client, "User", NULL, 0, &apps, &apps_len); if (err != IdeviceSuccess) { installation_proxy_client_free(client); *error = @"Failed to get apps";