From ba4ef994bdd71d236b585bf3f9eca96e46730157 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Wed, 22 Apr 2026 13:35:22 +0800 Subject: [PATCH] Fix system extension update error --- SFM.System/StandaloneApplicationDelegate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SFM.System/StandaloneApplicationDelegate.swift b/SFM.System/StandaloneApplicationDelegate.swift index 6b833b0..8f4b902 100644 --- a/SFM.System/StandaloneApplicationDelegate.swift +++ b/SFM.System/StandaloneApplicationDelegate.swift @@ -8,10 +8,10 @@ class StandaloneApplicationDelegate: ApplicationDelegate { func applicationWillFinishLaunching(_: Notification) { Variant.useSystemExtension = true LibboxSetXPCDialer(CommandXPCDialer.shared) - UserServiceEndpointPublisher.shared.start() Task { await setupSystemExtension() await HelperServiceManager.updateRootHelperIfNeeded() + UserServiceEndpointPublisher.shared.start() } }