Make app extension popup less annoying by not showing when refreshing (it doesn't do anything anyway)

This commit is contained in:
June
2024-08-17 00:16:48 +09:00
parent 40daafa17a
commit 42bd4e24f0

View File

@@ -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 }