From: Roopesh Chander Date: Thu, 22 Jul 2021 07:08:45 +0000 (+0530) Subject: MacAppStoreUpdateDetector: Detect StoreAEService correctly X-Git-Tag: 1.0.14-25~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ba4d1e7b2183faddc3ac59a5ca18df0c75c3770f;p=thirdparty%2Fwireguard-apple.git 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 --- 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 }