Skip to content

Commit

Permalink
fix(media): checking for config existence, not value
Browse files Browse the repository at this point in the history
Signed-off-by: Maksim Sukharev <[email protected]>
  • Loading branch information
Antreesy authored and backportbot[bot] committed Dec 10, 2024
1 parent 12b893d commit a4c245d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/SettingsDialog/SettingsDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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',

Expand Down

0 comments on commit a4c245d

Please sign in to comment.