From 489843f987178ffe469a27f2d14e486043f2fe29 Mon Sep 17 00:00:00 2001 From: Magesh K <47920326+mahee96@users.noreply.github.com> Date: Sun, 10 Nov 2024 16:41:44 +0530 Subject: [PATCH] Partial-Fix for #723: Error on refresh operation must be set on self.context instead of group.context (#742) --- AltStore/Managing Apps/AppManager.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AltStore/Managing Apps/AppManager.swift b/AltStore/Managing Apps/AppManager.swift index ad2a5e2d..18605dea 100644 --- a/AltStore/Managing Apps/AppManager.swift +++ b/AltStore/Managing Apps/AppManager.swift @@ -1207,7 +1207,7 @@ private extension AppManager } catch { - group.context.error = error + context.error = error operation.finish() } }