Skip to content
This repository has been archived by the owner on Feb 24, 2025. It is now read-only.

Commit

Permalink
Changes a line
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoreymendez committed Feb 6, 2025
1 parent caf2181 commit 9922c50
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,10 @@ public class AppInfoRetriever: AppInfoRetrieveing {
return []
}

for case let fileURL as URL in enumerator {
if fileURL.pathExtension == "app" {
let embeddedBundle = Bundle(url: fileURL)
if let bundleID = embeddedBundle?.bundleIdentifier {
bundleIDs.append(bundleID)
}
for case let fileURL as URL in enumerator where fileURL.pathExtension == "app" {
let embeddedBundle = Bundle(url: fileURL)
if let bundleID = embeddedBundle?.bundleIdentifier {
bundleIDs.append(bundleID)
}
}

Expand Down

0 comments on commit 9922c50

Please sign in to comment.