From 07afcbad111f5d15c1a3745e0ac3ecb48cb8f827 Mon Sep 17 00:00:00 2001 From: danielpaulus Date: Fri, 20 Oct 2023 16:39:11 -0400 Subject: [PATCH] fix (#292) --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 02ac301e..1f9f4121 100644 --- a/main.go +++ b/main.go @@ -1522,9 +1522,9 @@ func printInstalledApps(device ios.DeviceEntry, system bool, all bool, list bool } return } - if filesharing{ + if filesharing { for _, v := range response { - if (v.UIFileSharingEnabled) { + if v.UIFileSharingEnabled { fmt.Printf("%s %s %s\n", v.CFBundleIdentifier, v.CFBundleName, v.CFBundleShortVersionString) } }