From 115102c3d42786f5f639a106fa6a52368a9056cc Mon Sep 17 00:00:00 2001 From: Jackson Coxson Date: Sun, 2 Feb 2025 10:25:24 -0700 Subject: [PATCH] Tools only looks up user apps --- tools/src/instproxy.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/src/instproxy.rs b/tools/src/instproxy.rs index f0cd922..a8aa390 100644 --- a/tools/src/instproxy.rs +++ b/tools/src/instproxy.rs @@ -60,7 +60,10 @@ async fn main() { let mut instproxy_client = InstallationProxyClient::connect(&*provider) .await .expect("Unable to connect to instproxy"); - let apps = instproxy_client.get_apps(None, None).await.unwrap(); + let apps = instproxy_client + .get_apps(Some("User".to_string()), None) + .await + .unwrap(); for app in apps.keys() { println!("{app}"); }