From 21e172b94ae864e4d9950a517e58158cf3602fc7 Mon Sep 17 00:00:00 2001 From: xxxigm Date: Wed, 3 Jun 2026 07:32:00 +0700 Subject: [PATCH] fix(desktop): inherit microphone entitlement for macOS helpers Add com.apple.security.device.audio-input to entitlements.mac.inherit.plist. Under hardenedRuntime the Electron Helper/Setup processes inherit this file, and the missing entitlement made macOS TCC deny the microphone with no prompt, breaking voice chat. Fixes #37718 --- apps/desktop/electron/entitlements.mac.inherit.plist | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/desktop/electron/entitlements.mac.inherit.plist b/apps/desktop/electron/entitlements.mac.inherit.plist index f2eb2ecb0ad..53fdf0fc437 100644 --- a/apps/desktop/electron/entitlements.mac.inherit.plist +++ b/apps/desktop/electron/entitlements.mac.inherit.plist @@ -8,5 +8,7 @@ com.apple.security.cs.disable-library-validation + com.apple.security.device.audio-input +