diff --git a/AltStore/Managing Apps/AppManager.swift b/AltStore/Managing Apps/AppManager.swift index e001e300..8cb16d53 100644 --- a/AltStore/Managing Apps/AppManager.swift +++ b/AltStore/Managing Apps/AppManager.swift @@ -1803,6 +1803,12 @@ private extension AppManager func log(_ error: Error, operation: LoggedError.Operation, app: AppProtocol) { + switch error + { + case ~OperationError.Code.cancelled: return // Don't log OperationError.cancelled + default: break + } + // Sanitize NSError on same thread before performing background task. let sanitizedError = (error as NSError).sanitizedForSerialization()