Clean up unneeded guard

This commit is contained in:
Stossy11
2025-01-14 13:58:56 +11:00
parent 5c55f45c84
commit 1a0a7eb9d7

View File

@@ -112,11 +112,6 @@ func enableJITSideJITServer(serverURL: URL, installedApp: InstalledApp, completi
return
}
guard serverURL.hasPrefix("http") else {
completion(.failure(.invalidURL))
return
}
let serverURLWithUDID = serverURL.appendingPathComponent(udid)
let fullURL = serverURLWithUDID.appendingPathComponent(installedApp.resignedBundleIdentifier)