From 42bd4e24f0d993071524ae99cbd259f4a101d742 Mon Sep 17 00:00:00 2001 From: June Date: Sat, 17 Aug 2024 00:16:48 +0900 Subject: [PATCH] Make app extension popup less annoying by not showing when refreshing (it doesn't do anything anyway) --- AltStore/Managing Apps/AppManager.swift | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/AltStore/Managing Apps/AppManager.swift b/AltStore/Managing Apps/AppManager.swift index 44148daa..6cff5816 100644 --- a/AltStore/Managing Apps/AppManager.swift +++ b/AltStore/Managing Apps/AppManager.swift @@ -1140,6 +1140,11 @@ private extension AppManager { throw error } + + guard case .install = appOperation else { + operation.finish() + return + } guard let extensions = context.app?.appExtensions else { throw OperationError.invalidParameters }