From d2d029a8822f3ddd2ece82b8ffd4eed230bb4374 Mon Sep 17 00:00:00 2001 From: automated-signal <37887102+automated-signal@users.noreply.github.com> Date: Tue, 13 May 2025 20:03:10 -0500 Subject: [PATCH] Scope down content protection further for now Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com> --- ts/types/Settings.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/types/Settings.ts b/ts/types/Settings.ts index 26f1d485fd..bc910109aa 100644 --- a/ts/types/Settings.ts +++ b/ts/types/Settings.ts @@ -34,7 +34,7 @@ export const isSystemTraySupported = (OS: OSType): boolean => OS.isWindows() || OS.isLinux(); export const isContentProtectionSupported = (OS: OSType): boolean => - OS.isWindows() || OS.isMacOS(); + OS.isWindows(); export const isContentProtectionNeeded = (OS: OSType): boolean => OS.isWindows();