From ba4d1e7b2183faddc3ac59a5ca18df0c75c3770f Mon Sep 17 00:00:00 2001 From: Roopesh Chander Date: Thu, 22 Jul 2021 12:38:45 +0530 Subject: MacAppStoreUpdateDetector: Detect StoreAEService correctly In macOS 10.15 and macOS 11, the quit Apple event is sent by: com.apple.AppStoreDaemon.StoreAEService In some earlier macOS release, the quit Apple event was sent by: com.apple.CommerceKit.StoreAEService Signed-off-by: Roopesh Chander --- Sources/WireGuardApp/UI/macOS/MacAppStoreUpdateDetector.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/WireGuardApp/UI/macOS/MacAppStoreUpdateDetector.swift b/Sources/WireGuardApp/UI/macOS/MacAppStoreUpdateDetector.swift index 7c83f3b..bcbe28f 100644 --- a/Sources/WireGuardApp/UI/macOS/MacAppStoreUpdateDetector.swift +++ b/Sources/WireGuardApp/UI/macOS/MacAppStoreUpdateDetector.swift @@ -13,7 +13,7 @@ class MacAppStoreUpdateDetector { wg_log(.debug, message: "aevt/quit Apple event received from executable: \(executablePath)") if executablePath.hasPrefix("/System/Library/") { let executableName = URL(fileURLWithPath: executablePath, isDirectory: false).lastPathComponent - return executableName == "com.apple.CommerceKit.StoreAEService" + return executableName.hasPrefix("com.apple.") && executableName.hasSuffix(".StoreAEService") } return false } -- cgit v1.2.3-59-g8ed1b