From 1a0a7eb9d797a92e24b6b0798aa2505032d33f0e Mon Sep 17 00:00:00 2001 From: Stossy11 <69031796+stossy11@users.noreply.github.com> Date: Tue, 14 Jan 2025 13:58:56 +1100 Subject: [PATCH] Clean up unneeded guard --- AltStore/Operations/EnableJITOperation.swift | 5 ----- 1 file changed, 5 deletions(-) diff --git a/AltStore/Operations/EnableJITOperation.swift b/AltStore/Operations/EnableJITOperation.swift index eb984bdf..879ba649 100644 --- a/AltStore/Operations/EnableJITOperation.swift +++ b/AltStore/Operations/EnableJITOperation.swift @@ -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)