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 e117c4b9a3
commit f3d9dd777d

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 }