From d625b381d94b5244c0ed8a90d083756e6ed56b52 Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Thu, 7 Dec 2023 17:02:13 -0600 Subject: [PATCH] Fixes accidentally saving CancellationErrors to error log --- AltStore/Managing Apps/AppManager.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/AltStore/Managing Apps/AppManager.swift b/AltStore/Managing Apps/AppManager.swift index 78d79d41..98613f64 100644 --- a/AltStore/Managing Apps/AppManager.swift +++ b/AltStore/Managing Apps/AppManager.swift @@ -2103,6 +2103,7 @@ private extension AppManager switch error { case is CancellationError: return // Don't log CancellationErrors + case let nsError as NSError where nsError.domain == CancellationError()._domain: return default: break }