From 6639dc0cc2dfb9ca4cde057b09ded705e37730ab Mon Sep 17 00:00:00 2001 From: Maksim Sukharev Date: Tue, 10 Dec 2024 12:56:57 +0100 Subject: [PATCH] fix(media): checking for config existence, not value Signed-off-by: Maksim Sukharev --- src/components/SettingsDialog/SettingsDialog.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/SettingsDialog/SettingsDialog.vue b/src/components/SettingsDialog/SettingsDialog.vue index d48c8d3d3ab..efb01fa1b1b 100644 --- a/src/components/SettingsDialog/SettingsDialog.vue +++ b/src/components/SettingsDialog/SettingsDialog.vue @@ -229,8 +229,7 @@ const isBackgroundBlurredState = serverSupportsBackgroundBlurred ? loadState('spreed', 'force_enable_blur_filter', '') // 'yes', 'no', '' : BrowserStorage.getItem('background-blurred') // 'true', 'false', null const supportTypingStatus = getTalkConfig('local', 'chat', 'typing-privacy') !== undefined -const supportStartWithoutMedia = getTalkConfig('local', 'call', 'start-without-media') - +const supportStartWithoutMedia = getTalkConfig('local', 'call', 'start-without-media') !== undefined export default { name: 'SettingsDialog',