diff options
author | Martin Szulecki | 2020-06-04 23:17:56 +0200 |
---|---|---|
committer | Martin Szulecki | 2020-06-04 23:17:56 +0200 |
commit | 81bee150f73edde701ccc638efab78144c2b04fc (patch) | |
tree | c1603443e16a87cfafc820776e5cb233a8b51754 | |
parent | 4601bd02eafa4b50efc9a383ee16cd6467837c92 (diff) | |
download | ifuse-81bee150f73edde701ccc638efab78144c2b04fc.tar.gz ifuse-81bee150f73edde701ccc638efab78144c2b04fc.tar.bz2 |
Request all file sharing apps with "--list-apps" instead of user apps only
-rw-r--r-- | src/ifuse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ifuse.c b/src/ifuse.c index 315eb86..19270d6 100644 --- a/src/ifuse.c +++ b/src/ifuse.c @@ -736,7 +736,7 @@ static void list_available_apps(const char *udid) } plist_t client_opts = instproxy_client_options_new(); - instproxy_client_options_add(client_opts, "ApplicationType", "User", NULL); + instproxy_client_options_add(client_opts, "ApplicationType", "Any", NULL); instproxy_client_options_set_return_attributes(client_opts, "CFBundleIdentifier", "CFBundleDisplayName", |