diff --git a/AltStore/Operations/InstallAppOperation.swift b/AltStore/Operations/InstallAppOperation.swift index 8b35df38..9bf46298 100644 --- a/AltStore/Operations/InstallAppOperation.swift +++ b/AltStore/Operations/InstallAppOperation.swift @@ -216,8 +216,9 @@ final class InstallAppOperation: ResultOperation // Cell Shortcut DispatchQueue.main.async{ - UIApplication.shared.open(shortcutURLonDelay, options: [:]) { _ in - print("Cell OFF Shortcut finished execution.")} +// UIApplication.shared.open(shortcutURLonDelay, options: [:]) { _ in +// print("Cell OFF Shortcut finished execution.") +// } UIApplication.shared.perform(#selector(NSXPCConnection.suspend)) } })) @@ -238,7 +239,9 @@ final class InstallAppOperation: ResultOperation DispatchQueue.main.async { // Cell Shortcut - UIApplication.shared.open(shortcutURLonDelay, options: [:]) { _ in print("Cell OFF Shortcut finished execution.")} +// UIApplication.shared.open(shortcutURLonDelay, options: [:]) { _ in +// print("Cell OFF Shortcut finished execution.") +// } UIApplication.shared.perform(#selector(NSXPCConnection.suspend)) } } diff --git a/AltStore/Operations/SendAppOperation.swift b/AltStore/Operations/SendAppOperation.swift index a1c6e97d..1b6bdb25 100644 --- a/AltStore/Operations/SendAppOperation.swift +++ b/AltStore/Operations/SendAppOperation.swift @@ -46,13 +46,13 @@ final class SendAppOperation: ResultOperation<()> // Wait for Shortcut to Finish Before Proceeding DispatchQueue.main.async { - UIApplication.shared.open(shortcutURLoff, options: [:]) { _ in - print("Shortcut finished execution. Proceeding with file transfer.") +// UIApplication.shared.open(shortcutURLoff, options: [:]) { _ in +// print("Shortcut finished execution. Proceeding with file transfer.") DispatchQueue.global().async { self.processFile(at: fileURL, for: app.bundleIdentifier) } - } +// } } }