From a8589526f15a844c1c19b81a0f2cbe245de41aff 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 61262e09..4554a57a 100644 --- a/AltStore/Managing Apps/AppManager.swift +++ b/AltStore/Managing Apps/AppManager.swift @@ -1914,6 +1914,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 }