diff --git a/AltStore/Intents/App Intents/RefreshAllAppsIntent.swift b/AltStore/Intents/App Intents/RefreshAllAppsIntent.swift index eb7d19fd..6b357eb7 100644 --- a/AltStore/Intents/App Intents/RefreshAllAppsIntent.swift +++ b/AltStore/Intents/App Intents/RefreshAllAppsIntent.swift @@ -181,6 +181,8 @@ private extension RefreshAllAppsIntent } } + operation.ignoresServerNotFoundError = false + self.progress.addChild(operation.progress, withPendingUnitCount: 1) Task { diff --git a/AltStore/Operations/BackgroundRefreshAppsOperation.swift b/AltStore/Operations/BackgroundRefreshAppsOperation.swift index f65c6b8a..4db66a87 100644 --- a/AltStore/Operations/BackgroundRefreshAppsOperation.swift +++ b/AltStore/Operations/BackgroundRefreshAppsOperation.swift @@ -58,7 +58,8 @@ final class BackgroundRefreshAppsOperation: ResultOperation<[String: Result = [] @@ -225,7 +226,7 @@ private extension BackgroundRefreshAppsOperation { shouldPresentAlert = false } - catch ~OperationError.Code.serverNotFound + catch ~OperationError.Code.serverNotFound where self.ignoresServerNotFoundError { shouldPresentAlert = false }