From cf9c858bdaab8078e5af5eb100a129e581284653 Mon Sep 17 00:00:00 2001 From: Serhiy Mytrovtsiy Date: Thu, 9 Apr 2026 17:13:02 +0200 Subject: [PATCH] fix: fixed Fan helper installation process by using System over domain for launchd (#3008) --- Kit/helpers.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kit/helpers.swift b/Kit/helpers.swift index 93090ff3..cf8bcb56 100644 --- a/Kit/helpers.swift +++ b/Kit/helpers.swift @@ -993,7 +993,7 @@ public class SMCHelper { } var error: Unmanaged? - if SMJobBless(kSMDomainUserLaunchd, "eu.exelban.Stats.SMC.Helper" as CFString, authRef, &error) == false { + if SMJobBless(kSMDomainSystemLaunchd, "eu.exelban.Stats.SMC.Helper" as CFString, authRef, &error) == false { let blessError = error!.takeRetainedValue() as Error print("Error while installing the Helper: \(blessError.localizedDescription)") completion(false)