From 2b12f5db6cdff292a20e4cfc028df97522de902b Mon Sep 17 00:00:00 2001 From: Hampus Date: Wed, 2 Sep 2026 17:40:13 +0200 Subject: [PATCH] feat(voice): enable web camera background effects (#2408) --- .../src/features/voice/utils/VoiceBackgroundAvailability.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fluxer_app/src/features/voice/utils/VoiceBackgroundAvailability.ts b/fluxer_app/src/features/voice/utils/VoiceBackgroundAvailability.ts index c58f84026..0db20c557 100644 --- a/fluxer_app/src/features/voice/utils/VoiceBackgroundAvailability.ts +++ b/fluxer_app/src/features/voice/utils/VoiceBackgroundAvailability.ts @@ -1,5 +1,7 @@ // SPDX-License-Identifier: AGPL-3.0-or-later +import {webCameraSegmentationRuntimeAvailable} from '@app/features/voice/utils/camera-effects/WebCameraBackgroundSupport'; + export function areVoiceBackgroundsAvailable(): boolean { - return false; + return webCameraSegmentationRuntimeAvailable(); }